@dyedurham/search-and-file-widget 1.6.20 → 1.6.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dnd-filing-shell.js +1546 -1515
  2. package/package.json +1 -1
@@ -55905,6 +55905,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
55905
55905
  FormationFormControls2["wasLegalOpinionObtained"] = "wasLegalOpinionObtained";
55906
55906
  FormationFormControls2["RequestedDateForIncorporation"] = "requestedDateForIncorporation";
55907
55907
  FormationFormControls2["LawyerSigningOpinion"] = "lawyerSigningOpinion";
55908
+ FormationFormControls2["LawFirm"] = "lawFirm";
55908
55909
  FormationFormControls2["OtherProvisions"] = "otherProvisions";
55909
55910
  FormationFormControls2["Contact"] = "contact";
55910
55911
  })(FormationFormControls || (FormationFormControls = {}));
@@ -57078,7 +57079,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
57078
57079
  const email = lawyer?.communicationEmail || "";
57079
57080
  const phone = lawyer?.communicationPhone || "";
57080
57081
  return __spreadProps(__spreadValues({
57081
- LawFirm: lawyerAffiliation?.target?._profile?.name || "",
57082
+ LawFirm: legalOpinionDelta.lawFirm || "",
57082
57083
  LawyerFirstName: firstName
57083
57084
  }, middleName && { LawyerMiddleName: middleName }), {
57084
57085
  LawyerLastName: lastName,
@@ -58857,6 +58858,14 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
58857
58858
  }
58858
58859
  },
58859
58860
  options: lawyerOptions
58861
+ },
58862
+ {
58863
+ type: FormType.Input,
58864
+ label: "Law Firm",
58865
+ formControlName: FormationFormControls.LawFirm,
58866
+ required: true,
58867
+ isVisible: (form) => Boolean(form.get(FormationFormControls.LawyerSigningOpinion)?.value),
58868
+ class: "span-12"
58860
58869
  }
58861
58870
  ];
58862
58871
  };
@@ -59071,6 +59080,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
59071
59080
  }
59072
59081
  return new FormGroup({
59073
59082
  [FormationFormControls.LawyerSigningOpinion]: new FormControl(deltaData?.lawyerSigning ?? "", Validators.required),
59083
+ [FormationFormControls.LawFirm]: new FormControl(deltaData?.lawFirm ?? "", requiredIf(FormationFormControls.LawyerSigningOpinion)),
59074
59084
  [FormationFormControls.UnitType]: new FormControl(deltaData?.address?.unitType ?? "", requiredIf(IRFormControls.UnitNumber)),
59075
59085
  [FormationFormControls.UnitNumber]: new FormControl(deltaData?.address?.unitNumber ?? "", requiredIf(IRFormControls.UnitType)),
59076
59086
  [FormationFormControls.StreetNumber]: new FormControl(deltaData?.address?.streetNumber ?? "", Validators.required),
@@ -59198,23 +59208,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
59198
59208
  init_app_enums();
59199
59209
  init_ontario_formation_form_constants();
59200
59210
  OntarioUpdateMaintainFormHelper = class _OntarioUpdateMaintainFormHelper {
59201
- static normalizePersonKey(value) {
59202
- return (value ?? "").toLowerCase().replace(/\s+/g, " ").trim();
59203
- }
59204
- static getCurrentPersonData(comparisonData, affiliation) {
59205
- const lookupName = _OntarioUpdateMaintainFormHelper.normalizePersonKey(generateAffiliationFullName(affiliation));
59206
- if (!lookupName || !comparisonData?.persons?.size) {
59207
- return void 0;
59208
- }
59209
- for (const [personKey, personData] of comparisonData.persons.entries()) {
59210
- const normalizedKey = _OntarioUpdateMaintainFormHelper.normalizePersonKey(personKey);
59211
- if (normalizedKey === lookupName || normalizedKey.startsWith(`${lookupName} -`)) {
59212
- return personData;
59213
- }
59214
- }
59215
- return void 0;
59216
- }
59217
59211
  static generateInitialForm(task, comparisonData) {
59212
+ const isFirsSubmit = isInitialReturn(task);
59218
59213
  const config2 = {};
59219
59214
  const { _ext, incomingAffiliations, outgoingAffiliations } = task;
59220
59215
  const deltaData = task.deltaData;
@@ -59237,20 +59232,20 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
59237
59232
  const directorDeltaData = deltaData?.directors ?? {};
59238
59233
  config2[InitialReturnFillingFormGroups.Directors] = new FormArray([
59239
59234
  ...addedDirectors.map((admin) => {
59240
- const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, comparisonData, directorDeltaData[admin._id]);
59235
+ const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, isFirsSubmit ? null : comparisonData, directorDeltaData[admin._id]);
59241
59236
  form.addControl(IRFormControls.IsCanadianResident, new FormControl(directorDeltaData[admin._id]?.residentCanadian ?? false));
59242
59237
  return form;
59243
59238
  }),
59244
59239
  ...ceasedDirectors.map((admin) => {
59245
- const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, comparisonData, directorDeltaData[admin._id]);
59240
+ const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, isFirsSubmit ? null : comparisonData, directorDeltaData[admin._id]);
59246
59241
  form.addControl(IRFormControls.IsCanadianResident, new FormControl(directorDeltaData[admin._id]?.residentCanadian ?? false));
59247
59242
  return form;
59248
59243
  })
59249
59244
  ]);
59250
59245
  const officerDeltaData = deltaData?.officers ?? {};
59251
59246
  config2[InitialReturnFillingFormGroups.Officers] = new FormArray([
59252
- ...addedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, comparisonData, officerDeltaData[admin._id])),
59253
- ...ceasedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, comparisonData, officerDeltaData[admin._id]))
59247
+ ...addedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, isFirsSubmit ? null : comparisonData, officerDeltaData[admin._id])),
59248
+ ...ceasedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, isFirsSubmit ? null : comparisonData, officerDeltaData[admin._id]))
59254
59249
  ]);
59255
59250
  if (cert) {
59256
59251
  config2[InitialReturnFillingFormGroups.CertifiedBy] = _OntarioUpdateMaintainFormHelper.generateCertification(cert, deltaData?.certifiedBy);
@@ -59356,22 +59351,28 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
59356
59351
  const emailAddress = affiliation.participant.communicationEmail ?? communications?.find((item) => item.type.toLowerCase().includes("email"))?.value;
59357
59352
  const name = generateAffiliationFullName(affiliation);
59358
59353
  const key = generateAffiliationKey(affiliation).toLowerCase();
59359
- const currentData = _OntarioUpdateMaintainFormHelper.getCurrentPersonData(comparisonData, affiliation);
59354
+ const currentData = comparisonData?.persons.get(key);
59360
59355
  let correctedAffiliationType = affiliationType;
59361
59356
  let isThisChangeToAnExistingEntity = false;
59362
59357
  let isThisChangeToAnExistingEntityVisible = false;
59363
- if (deltaData) {
59364
- if (deltaData.currentName) {
59365
- isThisChangeToAnExistingEntity = true;
59366
- isThisChangeToAnExistingEntityVisible = true;
59367
- }
59368
- correctedAffiliationType = IRAffiliationType.Update;
59369
- } else {
59370
- if (currentData) {
59358
+ if (affiliationType !== IRAffiliationType.Ceased) {
59359
+ if (deltaData?.currentName) {
59360
+ if (!currentData) {
59361
+ isThisChangeToAnExistingEntity = true;
59362
+ isThisChangeToAnExistingEntityVisible = true;
59363
+ }
59371
59364
  correctedAffiliationType = IRAffiliationType.Update;
59372
59365
  } else {
59373
- isThisChangeToAnExistingEntity = false;
59374
- isThisChangeToAnExistingEntityVisible = true;
59366
+ if (currentData) {
59367
+ correctedAffiliationType = IRAffiliationType.Update;
59368
+ } else {
59369
+ const keys = Array.from(comparisonData?.persons.keys() ?? []);
59370
+ const keyLikeField = keys.find((item) => item.includes(name.toLowerCase()));
59371
+ if (keyLikeField) {
59372
+ isThisChangeToAnExistingEntity = false;
59373
+ isThisChangeToAnExistingEntityVisible = true;
59374
+ }
59375
+ }
59375
59376
  }
59376
59377
  }
59377
59378
  const config2 = {
@@ -59382,7 +59383,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
59382
59383
  [IRFormControls.CeaseDate]: new FormControl(affiliation.end_date ? toYyyyMmDd(affiliation.end_date) : ""),
59383
59384
  [IRFormControls.Email]: new FormControl(emailAddress ?? ""),
59384
59385
  [IRFormControls.AffiliationType]: new FormControl(correctedAffiliationType),
59385
- [IRFormControls.CurrentName]: new FormControl(deltaData ? deltaData.currentName : IRAffiliationType.Update === correctedAffiliationType ? key : "", requiredIf(IRFormControls.IsThisChangeToAnExistingEntity)),
59386
+ [IRFormControls.CurrentName]: new FormControl(deltaData ? deltaData.currentName : currentData ? key : "", requiredIf(IRFormControls.IsThisChangeToAnExistingEntity)),
59386
59387
  [IRFormControls.IsThisChangeToAnExistingEntity]: new FormControl(isThisChangeToAnExistingEntity),
59387
59388
  [IRFormControls.IsThisChangeToAnExistingEntityVisible]: new FormControl(isThisChangeToAnExistingEntityVisible)
59388
59389
  };
@@ -60691,7 +60692,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
60691
60692
  (() => {
60692
60693
  (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ConfirmModalComponent, [{
60693
60694
  type: Component,
60694
- args: [{ selector: "confirm-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, TranslatePipe], template: '@let config = modalConfig();\n<div class="confirm-modal">\n <div class="confirm-modal-header">\n <h1 class="confirm-modal-header-title d-flex align-items-center">\n @if (config.icon) {\n <span class="material-icons-outlined icon mr-s">delete</span>\n }\n\n {{ config.title | translate }}\n </h1>\n </div>\n\n <div class="confirm-modal-text">{{ config.text | translate }}</div>\n\n <div class="confirm-modal-actions">\n <button mat-stroked-button (click)="closeModal()">\n <span class="body-1-semibold">{{ config.cancelButton | translate }}</span>\n </button>\n <button\n class="confirm-modal-actions-submit"\n mat-flat-button\n color="primary"\n (click)="closeModal(true)"\n >\n <span class="body-1-semibold">{{ config.confirmButton | translate}}</span>\n </button>\n </div>\n</div>\n', styles: ['/* src/app/components/confirm-modal/confirm-modal.component.scss */\n:host {\n --filing-modal-color-grey: #444444;\n --filing-modal-color-dark-blue: #485673;\n --filing-modal-color-grey-mid: #A0A0A0;\n --filing-modal-color-light-blue: #3778E4;\n --filing-modal-color-black: #444444;\n}\nmat-icon {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1 {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2 {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3 {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 20px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\n.body-1-regular {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0;\n}\n.black {\n color: var(--filing-modal-color-black);\n}\n.grey {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue {\n color: var(--filing-modal-color-light-blue);\n}\n.filling {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\n.filling {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n.filing .mat-primary .mat-pseudo-checkbox-checked,\n.filing .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n.filing .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n:host {\n display: flex;\n flex-direction: column;\n gap: 12px;\n height: 100%;\n padding: 12px;\n}\n:host .confirm-modal {\n display: flex;\n flex-direction: column;\n flex: 1;\n gap: 16px;\n}\n:host .confirm-modal-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .confirm-modal-header-title {\n font-size: 20px;\n color: var(--neutral-20);\n}\n:host .confirm-modal-header-icon {\n font-size: 14px;\n height: 20px;\n}\n:host .confirm-modal-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n}\n:host .confirm-modal-actions button {\n margin: 0;\n}\n:host .confirm-modal-actions-submit {\n padding-left: 30px;\n padding-right: 30px;\n background-color: #3778e4;\n color: white;\n border-radius: 4px !important;\n}\n/*# sourceMappingURL=confirm-modal.component.css.map */\n'] }]
60695
+ args: [{ selector: "confirm-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, TranslatePipe], template: '@let config = modalConfig();\r\n<div class="confirm-modal">\r\n <div class="confirm-modal-header">\r\n <h1 class="confirm-modal-header-title d-flex align-items-center">\r\n @if (config.icon) {\r\n <span class="material-icons-outlined icon mr-s">delete</span>\r\n }\r\n\r\n {{ config.title | translate }}\r\n </h1>\r\n </div>\r\n\r\n <div class="confirm-modal-text">{{ config.text | translate }}</div>\r\n\r\n <div class="confirm-modal-actions">\r\n <button mat-stroked-button (click)="closeModal()">\r\n <span class="body-1-semibold">{{ config.cancelButton | translate }}</span>\r\n </button>\r\n <button\r\n class="confirm-modal-actions-submit"\r\n mat-flat-button\r\n color="primary"\r\n (click)="closeModal(true)"\r\n >\r\n <span class="body-1-semibold">{{ config.confirmButton | translate}}</span>\r\n </button>\r\n </div>\r\n</div>\r\n', styles: ['/* src/app/components/confirm-modal/confirm-modal.component.scss */\n:host {\n --filing-modal-color-grey: #444444;\n --filing-modal-color-dark-blue: #485673;\n --filing-modal-color-grey-mid: #A0A0A0;\n --filing-modal-color-light-blue: #3778E4;\n --filing-modal-color-black: #444444;\n}\nmat-icon {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1 {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2 {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3 {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 20px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\n.body-1-regular {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0;\n}\n.black {\n color: var(--filing-modal-color-black);\n}\n.grey {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue {\n color: var(--filing-modal-color-light-blue);\n}\n.filling {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\n.filling {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n.filing .mat-primary .mat-pseudo-checkbox-checked,\n.filing .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n.filing .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n:host {\n display: flex;\n flex-direction: column;\n gap: 12px;\n height: 100%;\n padding: 12px;\n}\n:host .confirm-modal {\n display: flex;\n flex-direction: column;\n flex: 1;\n gap: 16px;\n}\n:host .confirm-modal-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .confirm-modal-header-title {\n font-size: 20px;\n color: var(--neutral-20);\n}\n:host .confirm-modal-header-icon {\n font-size: 14px;\n height: 20px;\n}\n:host .confirm-modal-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n}\n:host .confirm-modal-actions button {\n margin: 0;\n}\n:host .confirm-modal-actions-submit {\n padding-left: 30px;\n padding-right: 30px;\n background-color: #3778e4;\n color: white;\n border-radius: 4px !important;\n}\n/*# sourceMappingURL=confirm-modal.component.css.map */\n'] }]
60695
60696
  }], null, null);
60696
60697
  })();
60697
60698
  (() => {
@@ -62935,7 +62936,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
62935
62936
  (() => {
62936
62937
  (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ChipComponent, [{
62937
62938
  type: Component,
62938
- args: [{ selector: "chip", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="chip {{type()}}">\n <span class="body-1-semibold">{{title() | translate}}</span>\n</div>\n', styles: ["/* src/app/components/chip/chip.component.scss */\n:host .chip {\n padding: 0 15px;\n height: 20px;\n display: flex;\n align-items: center;\n border-radius: 4px;\n border: 1px solid #A1B5C7;\n}\n:host .chip.warning {\n color: #CFB95A;\n}\n:host .chip.danger {\n color: #C56868;\n}\n:host .chip.success {\n color: #4CAF51;\n}\n/*# sourceMappingURL=chip.component.css.map */\n"] }]
62939
+ args: [{ selector: "chip", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="chip {{type()}}">\r\n <span class="body-1-semibold">{{title() | translate}}</span>\r\n</div>\r\n', styles: ["/* src/app/components/chip/chip.component.scss */\n:host .chip {\n padding: 0 15px;\n height: 20px;\n display: flex;\n align-items: center;\n border-radius: 4px;\n border: 1px solid #A1B5C7;\n}\n:host .chip.warning {\n color: #CFB95A;\n}\n:host .chip.danger {\n color: #C56868;\n}\n:host .chip.success {\n color: #4CAF51;\n}\n/*# sourceMappingURL=chip.component.css.map */\n"] }]
62939
62940
  }], null, null);
62940
62941
  })();
62941
62942
  (() => {
@@ -63137,7 +63138,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
63137
63138
  MatIcon,
63138
63139
  ChipComponent,
63139
63140
  TranslatePipe
63140
- ], changeDetection: ChangeDetectionStrategy.OnPush, animations: [
63141
+ ], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, animations: [
63141
63142
  trigger("expandCollapse", [
63142
63143
  state("true", style({
63143
63144
  height: "*",
@@ -63154,50 +63155,50 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
63154
63155
  animate("100ms cubic-bezier(0.4, 0.0, 0.2, 1)")
63155
63156
  ])
63156
63157
  ])
63157
- ], template: `<div [class.padded]="padded()" [class.border]="border()" class="expandable-card">
63158
- <div (click)="toggle()" class="expandable-card-header">
63159
- <h2 [class.list-item]="isListItem()" class="expandable-card-header-title">{{title() | translate}}
63160
- @if (role()) {
63161
- <span>({{role()}})</span>
63162
- }
63163
- </h2>
63164
- <div [class.list-item]="isListItem()" class="expandable-card-header-container">
63165
- @if (isStatusIcon()) {
63166
- @if (!isValid()) {
63167
- <mat-icon class="expandable-card-header-status-icon"> error_outline </mat-icon>
63168
- }
63169
- }
63170
-
63171
- @if(chipType()) {
63172
- <chip [type]="chipType()" [title]="chipText()"/>
63173
- }
63174
-
63175
- @if (isExpandable()) {
63176
- <mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon>
63177
- }
63178
- </div>
63179
- </div>
63180
-
63181
- <div class="expandable-card-content"
63182
- [@expandCollapse]="isExpanded()">
63183
- <div class="expandable-card-content-item">
63184
- <ng-content></ng-content>
63185
-
63186
- @if (removable()) {
63187
- <div class="expandable-card-content-item-actions">
63188
- <span (click)="remove.emit()" class="body-1-regular light-blue pointer">{{'Remove' | translate}}</span>
63189
- </div>
63190
- }
63191
-
63192
-
63193
- </div>
63194
- </div>
63195
- </div>
63158
+ ], template: `<div [class.padded]="padded()" [class.border]="border()" class="expandable-card">\r
63159
+ <div (click)="toggle()" class="expandable-card-header">\r
63160
+ <h2 [class.list-item]="isListItem()" class="expandable-card-header-title">{{title() | translate}}\r
63161
+ @if (role()) {\r
63162
+ <span>({{role()}})</span>\r
63163
+ }\r
63164
+ </h2>\r
63165
+ <div [class.list-item]="isListItem()" class="expandable-card-header-container">\r
63166
+ @if (isStatusIcon()) {\r
63167
+ @if (!isValid()) {\r
63168
+ <mat-icon class="expandable-card-header-status-icon"> error_outline </mat-icon>\r
63169
+ }\r
63170
+ }\r
63171
+ \r
63172
+ @if(chipType()) {\r
63173
+ <chip [type]="chipType()" [title]="chipText()"/>\r
63174
+ }\r
63175
+ \r
63176
+ @if (isExpandable()) {\r
63177
+ <mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon>\r
63178
+ }\r
63179
+ </div>\r
63180
+ </div>\r
63181
+ \r
63182
+ <div class="expandable-card-content"\r
63183
+ [@expandCollapse]="isExpanded()">\r
63184
+ <div class="expandable-card-content-item">\r
63185
+ <ng-content></ng-content>\r
63186
+ \r
63187
+ @if (removable()) {\r
63188
+ <div class="expandable-card-content-item-actions">\r
63189
+ <span (click)="remove.emit()" class="body-1-regular light-blue pointer">{{'Remove' | translate}}</span>\r
63190
+ </div>\r
63191
+ }\r
63192
+ \r
63193
+ \r
63194
+ </div>\r
63195
+ </div>\r
63196
+ </div>\r
63196
63197
  `, styles: ["/* src/app/components/expandable-card/expandable-card.component.scss */\n:host .expandable-card {\n border-radius: 8px;\n height: 100%;\n}\n:host .expandable-card-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .expandable-card-header-status-icon {\n font-weight: 400;\n color: #F1D01E;\n font-size: 22px;\n height: 22px;\n width: 22px;\n}\n:host .expandable-card-header-status-icon.added {\n color: #44aa00;\n}\n:host .expandable-card-header-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n:host .expandable-card-header-title {\n color: #666666;\n font-weight: 700;\n font-size: 14px;\n}\n:host .expandable-card-header-title.list-item {\n color: var(--filing-modal-color-dark-blue);\n font-weight: 600;\n}\n:host .expandable-card-header-container {\n display: flex;\n align-items: center;\n gap: 16px;\n}\n:host .expandable-card-header-container.list-item mat-icon {\n font-size: 16px;\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon) {\n display: flex;\n align-items: center;\n justify-content: center;\n transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1);\n transform: rotate(-90deg);\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon).rotated {\n transform: rotate(90deg);\n}\n:host .expandable-card-content {\n height: 100%;\n}\n:host .expandable-card-content-item {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n:host .expandable-card-content-item-actions {\n display: flex;\n justify-content: flex-end;\n width: 100%;\n}\n:host .expandable-card.border {\n box-shadow:\n 0 1px 2px rgba(0, 0, 0, 0.08),\n 0 2px 4px rgba(0, 0, 0, 0.12),\n 0 0 0 1px rgba(0, 0, 0, 0.04);\n margin: 1px;\n}\n:host .expandable-card.padded {\n padding: 16px;\n}\n/*# sourceMappingURL=expandable-card.component.css.map */\n"] }]
63197
63198
  }], () => [], null);
63198
63199
  })();
63199
63200
  (() => {
63200
- (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ExpandableCardComponent, { className: "ExpandableCardComponent", filePath: "src/app/components/expandable-card/expandable-card.component.ts", lineNumber: 37 });
63201
+ (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ExpandableCardComponent, { className: "ExpandableCardComponent", filePath: "src/app/components/expandable-card/expandable-card.component.ts", lineNumber: 38 });
63201
63202
  })();
63202
63203
  }
63203
63204
  });
@@ -74457,7 +74458,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
74457
74458
  MatFormFieldModule,
74458
74459
  MatInputModule,
74459
74460
  MatAutocompleteModule
74460
- ], template: '<mat-form-field appearance="outline">\n <input\n matInput\n [formControl]="control()"\n [placeholder]="placeholder()"\n [required]="required()"\n [matAutocomplete]="auto"\n />\n\n <mat-autocomplete #auto="matAutocomplete">\n @for (option of filteredOptions(); track option) {\n <mat-option [value]="option.value">\n {{ option.label }}\n </mat-option>\n }\n </mat-autocomplete>\n</mat-form-field>\n' }]
74461
+ ], template: '<mat-form-field appearance="outline">\r\n <input\r\n matInput\r\n [formControl]="control()"\r\n [placeholder]="placeholder()"\r\n [required]="required()"\r\n [matAutocomplete]="auto"\r\n />\r\n\r\n <mat-autocomplete #auto="matAutocomplete">\r\n @for (option of filteredOptions(); track option) {\r\n <mat-option [value]="option.value">\r\n {{ option.label }}\r\n </mat-option>\r\n }\r\n </mat-autocomplete>\r\n</mat-form-field>\r\n' }]
74461
74462
  }], null, null);
74462
74463
  })();
74463
74464
  (() => {
@@ -78600,7 +78601,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
78600
78601
  }
78601
78602
  ], imports: [
78602
78603
  MatCheckbox
78603
- ], template: '<div class="checkbox-list">\n <div class="body-1-regular grey">{{ title() }}</div>\n\n @for (item of items(); track item.value) {\n <label class="checkbox-list-item">\n <mat-checkbox\n [checked]="isChecked(item.value)"\n [disabled]="disabled"\n (change)="toggle(item.value)"\n >\n <span class="body-1-regular grey">{{ item.label }}</span>\n </mat-checkbox>\n </label>\n }\n</div>\n', styles: ["/* src/app/components/checkbox-list/checkbox-list.component.scss */\n:host .checkbox-list {\n display: flex;\n flex-direction: column;\n gap: 12px;\n padding-bottom: 16px;\n}\n:host .checkbox-list-item {\n padding-left: 16px;\n}\n/*# sourceMappingURL=checkbox-list.component.css.map */\n"] }]
78604
+ ], template: '<div class="checkbox-list">\r\n <div class="body-1-regular grey">{{ title() }}</div>\r\n\r\n @for (item of items(); track item.value) {\r\n <label class="checkbox-list-item">\r\n <mat-checkbox\r\n [checked]="isChecked(item.value)"\r\n [disabled]="disabled"\r\n (change)="toggle(item.value)"\r\n >\r\n <span class="body-1-regular grey">{{ item.label }}</span>\r\n </mat-checkbox>\r\n </label>\r\n }\r\n</div>\r\n', styles: ["/* src/app/components/checkbox-list/checkbox-list.component.scss */\n:host .checkbox-list {\n display: flex;\n flex-direction: column;\n gap: 12px;\n padding-bottom: 16px;\n}\n:host .checkbox-list-item {\n padding-left: 16px;\n}\n/*# sourceMappingURL=checkbox-list.component.css.map */\n"] }]
78604
78605
  }], null, null);
78605
78606
  })();
78606
78607
  (() => {
@@ -79314,234 +79315,234 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
79314
79315
  { provide: DateAdapter, useClass: MomentDateAdapter },
79315
79316
  { provide: MAT_DATE_FORMATS, useValue: MY_DATE_FORMATS },
79316
79317
  { provide: MAT_DATE_LOCALE, useValue: "en-GB" }
79317
- ], template: `@let fields = this.config();
79318
- @let form = this.form();
79319
-
79320
- <section>
79321
- <div [class.submitted]="isSubmitted()" class="filling-form-fields" [formGroup]="form">
79322
- @for (field of fields; track field.formControlName + $index; let last = $last) {
79323
- @if (!field.isVisible || field.isVisible(form)) {
79324
- @let previousValue = validationConfig()?.[field.formControlName];
79325
-
79326
- @switch (field.type) {
79327
- @case (types.Select) {
79328
- <div class="filling-form-fields-item {{field.class ?? 'span-6'}}">
79329
- @let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;
79330
- @if (label) {
79331
- <span class="filling-form-fields-item-label body-1-regular">
79332
- {{ (label | translate) + (field.required ? " *" : "") }}
79333
- </span>
79334
- }
79335
- <mat-form-field appearance="outline">
79336
- @let control = form.get(field.formControlName);
79337
-
79338
- <input
79339
- matInput
79340
- [formControlName]="field.formControlName"
79341
- [matAutocomplete]="autocompleteRef"
79342
- (change)="field.onChange && field.onChange(form)"
79343
- />
79344
-
79345
- <mat-autocomplete
79346
- #autocompleteRef="matAutocomplete"
79347
- [displayWith]="getDisplayFn(field)"
79348
- (optionSelected)="field.onChange && field.onChange(form)"
79349
- >
79350
- @for (option of getFilteredOptions(field); track option.value) {
79351
- <mat-option
79352
- class="filing-form-group-select-option"
79353
- [value]="option.value"
79354
- >
79355
- {{ field.needTranslate ? (option.label | translate) : option.label }}
79356
- </mat-option>
79357
- }
79358
- @if (getFilteredOptions(field).length === 0) {
79359
- <mat-option disabled>{{ 'No options found' | translate }}</mat-option>
79360
- }
79361
- </mat-autocomplete>
79362
-
79363
- @if (control?.value && !control?.disabled) {
79364
- <div matSuffix class="suffix-container">
79365
- <button mat-icon-button (click)="control?.reset(); field.onChange && field.onChange(form)">
79366
- <mat-icon>close</mat-icon>
79367
- </button>
79368
-
79369
- <mat-icon class="arrow-icon">arrow_drop_down</mat-icon>
79370
- </div>
79371
- } @else {
79372
- <mat-icon matSuffix>arrow_drop_down</mat-icon>
79373
- }
79374
-
79375
- <mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>
79376
- </mat-form-field>
79377
- </div>
79378
- }
79379
-
79380
- @case (types.Checkbox) {
79381
- <div [class.last]="last" class="filling-form-fields-checkbox {{field.class ?? 'span-6'}}">
79382
- <mat-checkbox
79383
- (change)="field.onChange && field.onChange(form)"
79384
- [formControlName]="field.formControlName"
79385
- >
79386
- @let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;
79387
- <div>
79388
- <span class="body-1-regular black" [class.warning]="!!previousValue">{{
79389
- label | translate
79390
- }}</span>
79391
- @if (previousValue != null) {
79392
- <mat-icon
79393
- [class.warning]="true"
79394
- class="filling-form-fields-item-icon"
79395
- matSuffix
79396
- >warning_amber</mat-icon
79397
- >
79398
- }
79399
- </div>
79400
- </mat-checkbox>
79401
-
79402
- @if (previousValue != null) {
79403
- <mat-hint
79404
- [class.warning]="true"
79405
- class="filling-form-fields-item-hint"
79406
- >{{ 'Previously saved value' | translate }}: {{ previousValue ? ('checked' | translate) : ('unchecked' | translate) }}</mat-hint
79407
- >
79408
- }
79409
- </div>
79410
- }
79411
-
79412
- @case (types.Empty) {
79413
- <div class="filling-form-fields-empty {{field.class ?? 'span-6'}}"></div>
79414
- }
79415
- @case (types.Autocomplete) {
79416
- <div class="filling-form-fields-item {{field.class ?? 'span-6'}}">
79417
- @if (field.label) {
79418
- <span class="filling-form-fields-item-label body-1-regular">
79419
- {{ (field.label | translate) + (field.required ? " *" : "") }}
79420
- </span>
79421
- }
79422
- <autocomplete-field
79423
- [options]="field.options ?? []"
79424
- [control]="getFormControl(field.formControlName)"
79425
- [required]="field.required ?? false"
79426
- />
79427
- </div>
79428
- }
79429
-
79430
- @case (types.Date) {
79431
- <div
79432
- class="filling-form-fields-item {{field.class ?? 'span-6'}}"
79433
- [class.warning]="!!previousValue"
79434
- >
79435
- @if (field.label) {
79436
- <span
79437
- class="filling-form-fields-item-label body-1-regular"
79438
- [class.warning]="!!previousValue"
79439
- >
79440
- {{ (field.label | translate) + (field.required ? " *" : "") }}
79441
- </span>
79442
- }
79443
-
79444
- <mat-form-field appearance="outline">
79445
- <input
79446
- matInput
79447
- [matDatepicker]="picker"
79448
- [formControlName]="field.formControlName"
79449
- (dateChange)="field.onChange && field.onChange(form)"
79450
- />
79451
- <mat-datepicker-toggle matSuffix [for]="picker">
79452
- <mat-icon matDatepickerToggleIcon>calendar_today</mat-icon>
79453
- </mat-datepicker-toggle>
79454
- <mat-datepicker #picker></mat-datepicker>
79455
-
79456
- @if (previousValue != null) {
79457
- <mat-hint
79458
- [class.warning]="true"
79459
- class="filling-form-fields-item-hint"
79460
- >
79461
- {{ 'Previously saved value' | translate }}: {{ previousValue }}
79462
- </mat-hint>
79463
- }
79464
-
79465
- <mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>
79466
- </mat-form-field>
79467
- </div>
79468
- }
79469
-
79470
- @case (types.Input) {
79471
- <div
79472
- [class.warning]="!!previousValue"
79473
- class="filling-form-fields-item {{field.class ?? 'span-6'}}"
79474
- >
79475
- @if (field.label) {
79476
- <span
79477
- [class.warning]="!!previousValue"
79478
- class="filling-form-fields-item-label body-1-regular"
79479
- >
79480
- {{ (field.label | translate) + (field.required ? " *" : "") }}
79481
- </span>
79482
-
79483
- <mat-form-field appearance="outline">
79484
- <input
79485
- matInput
79486
- [readonly]="field.readonly"
79487
- [formControlName]="field.formControlName"
79488
- (input)="field.onChange && field.onChange(form)"
79489
- />
79490
-
79491
- @if (previousValue != null) {
79492
- <mat-hint
79493
- [class.warning]="true"
79494
- class="filling-form-fields-item-hint"
79495
- >{{ 'Previously saved value' | translate }}: {{ previousValue }}</mat-hint
79496
- >
79497
- }
79498
-
79499
- @if (previousValue != null) {
79500
- <mat-icon
79501
- [class.warning]="true"
79502
- class="filling-form-fields-item-icon"
79503
- matSuffix
79504
- >warning_amber</mat-icon
79505
- >
79506
- }
79507
-
79508
- <mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>
79509
- </mat-form-field>
79510
- }
79511
- </div>
79512
- }
79513
- @case (types.TextArea) {
79514
- <div class="filling-form-fields-item text-area {{field.class ?? 'span-6'}}">
79515
- @if (field.label) {
79516
- <span class="filling-form-fields-item-label body-1-regular">
79517
- {{ (field.label | translate) + (field.required ? " *" : "") }}
79518
- </span>
79519
-
79520
- <mat-form-field appearance="outline">
79521
- <textarea
79522
- matInput
79523
- [readonly]="field.readonly"
79524
- [formControlName]="field.formControlName"
79525
- (change)="field.onChange && field.onChange(form)"
79526
- ></textarea>
79527
- </mat-form-field>
79528
- }
79529
- </div>
79530
- }
79531
- @case (types.CheckboxList) {
79532
- <checkbox-list class="{{field.class}}" [formControlName]="field.formControlName" [items]="field.options ?? []"/>
79533
- }
79534
- @case (types.Text) {
79535
- @let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn, prevData()) : field.label;
79536
- @if (label) {
79537
- <p [class.last]="last" class="filling-form-fields-item-text body-1-regular grey" [class]="field.class" [innerHTML]="label" ></p>
79538
- }
79539
- }
79540
- }
79541
- }
79542
- }
79543
- </div>
79544
- </section>
79318
+ ], template: `@let fields = this.config();\r
79319
+ @let form = this.form();\r
79320
+ \r
79321
+ <section>\r
79322
+ <div [class.submitted]="isSubmitted()" class="filling-form-fields" [formGroup]="form">\r
79323
+ @for (field of fields; track field.formControlName + $index; let last = $last) {\r
79324
+ @if (!field.isVisible || field.isVisible(form)) {\r
79325
+ @let previousValue = validationConfig()?.[field.formControlName];\r
79326
+ \r
79327
+ @switch (field.type) {\r
79328
+ @case (types.Select) {\r
79329
+ <div class="filling-form-fields-item {{field.class ?? 'span-6'}}">\r
79330
+ @let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;\r
79331
+ @if (label) {\r
79332
+ <span class="filling-form-fields-item-label body-1-regular">\r
79333
+ {{ (label | translate) + (field.required ? " *" : "") }}\r
79334
+ </span>\r
79335
+ }\r
79336
+ <mat-form-field appearance="outline">\r
79337
+ @let control = form.get(field.formControlName);\r
79338
+ \r
79339
+ <input\r
79340
+ matInput\r
79341
+ [formControlName]="field.formControlName"\r
79342
+ [matAutocomplete]="autocompleteRef"\r
79343
+ (change)="field.onChange && field.onChange(form)"\r
79344
+ />\r
79345
+ \r
79346
+ <mat-autocomplete\r
79347
+ #autocompleteRef="matAutocomplete"\r
79348
+ [displayWith]="getDisplayFn(field)"\r
79349
+ (optionSelected)="field.onChange && field.onChange(form)"\r
79350
+ >\r
79351
+ @for (option of getFilteredOptions(field); track option.value) {\r
79352
+ <mat-option\r
79353
+ class="filing-form-group-select-option"\r
79354
+ [value]="option.value"\r
79355
+ >\r
79356
+ {{ field.needTranslate ? (option.label | translate) : option.label }}\r
79357
+ </mat-option>\r
79358
+ }\r
79359
+ @if (getFilteredOptions(field).length === 0) {\r
79360
+ <mat-option disabled>{{ 'No options found' | translate }}</mat-option>\r
79361
+ }\r
79362
+ </mat-autocomplete>\r
79363
+ \r
79364
+ @if (control?.value && !control?.disabled) {\r
79365
+ <div matSuffix class="suffix-container">\r
79366
+ <button mat-icon-button (click)="control?.reset(); field.onChange && field.onChange(form)">\r
79367
+ <mat-icon>close</mat-icon>\r
79368
+ </button>\r
79369
+ \r
79370
+ <mat-icon class="arrow-icon">arrow_drop_down</mat-icon>\r
79371
+ </div>\r
79372
+ } @else {\r
79373
+ <mat-icon matSuffix>arrow_drop_down</mat-icon>\r
79374
+ }\r
79375
+ \r
79376
+ <mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>\r
79377
+ </mat-form-field>\r
79378
+ </div>\r
79379
+ }\r
79380
+ \r
79381
+ @case (types.Checkbox) {\r
79382
+ <div [class.last]="last" class="filling-form-fields-checkbox {{field.class ?? 'span-6'}}">\r
79383
+ <mat-checkbox\r
79384
+ (change)="field.onChange && field.onChange(form)"\r
79385
+ [formControlName]="field.formControlName"\r
79386
+ >\r
79387
+ @let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;\r
79388
+ <div>\r
79389
+ <span class="body-1-regular black" [class.warning]="!!previousValue">{{\r
79390
+ label | translate\r
79391
+ }}</span>\r
79392
+ @if (previousValue != null) {\r
79393
+ <mat-icon\r
79394
+ [class.warning]="true"\r
79395
+ class="filling-form-fields-item-icon"\r
79396
+ matSuffix\r
79397
+ >warning_amber</mat-icon\r
79398
+ >\r
79399
+ }\r
79400
+ </div>\r
79401
+ </mat-checkbox>\r
79402
+ \r
79403
+ @if (previousValue != null) {\r
79404
+ <mat-hint\r
79405
+ [class.warning]="true"\r
79406
+ class="filling-form-fields-item-hint"\r
79407
+ >{{ 'Previously saved value' | translate }}: {{ previousValue ? ('checked' | translate) : ('unchecked' | translate) }}</mat-hint\r
79408
+ >\r
79409
+ }\r
79410
+ </div>\r
79411
+ }\r
79412
+ \r
79413
+ @case (types.Empty) {\r
79414
+ <div class="filling-form-fields-empty {{field.class ?? 'span-6'}}"></div>\r
79415
+ }\r
79416
+ @case (types.Autocomplete) {\r
79417
+ <div class="filling-form-fields-item {{field.class ?? 'span-6'}}">\r
79418
+ @if (field.label) {\r
79419
+ <span class="filling-form-fields-item-label body-1-regular">\r
79420
+ {{ (field.label | translate) + (field.required ? " *" : "") }}\r
79421
+ </span>\r
79422
+ }\r
79423
+ <autocomplete-field\r
79424
+ [options]="field.options ?? []"\r
79425
+ [control]="getFormControl(field.formControlName)"\r
79426
+ [required]="field.required ?? false"\r
79427
+ />\r
79428
+ </div>\r
79429
+ }\r
79430
+ \r
79431
+ @case (types.Date) {\r
79432
+ <div\r
79433
+ class="filling-form-fields-item {{field.class ?? 'span-6'}}"\r
79434
+ [class.warning]="!!previousValue"\r
79435
+ >\r
79436
+ @if (field.label) {\r
79437
+ <span\r
79438
+ class="filling-form-fields-item-label body-1-regular"\r
79439
+ [class.warning]="!!previousValue"\r
79440
+ >\r
79441
+ {{ (field.label | translate) + (field.required ? " *" : "") }}\r
79442
+ </span>\r
79443
+ }\r
79444
+ \r
79445
+ <mat-form-field appearance="outline">\r
79446
+ <input\r
79447
+ matInput\r
79448
+ [matDatepicker]="picker"\r
79449
+ [formControlName]="field.formControlName"\r
79450
+ (dateChange)="field.onChange && field.onChange(form)"\r
79451
+ />\r
79452
+ <mat-datepicker-toggle matSuffix [for]="picker">\r
79453
+ <mat-icon matDatepickerToggleIcon>calendar_today</mat-icon>\r
79454
+ </mat-datepicker-toggle>\r
79455
+ <mat-datepicker #picker></mat-datepicker>\r
79456
+ \r
79457
+ @if (previousValue != null) {\r
79458
+ <mat-hint\r
79459
+ [class.warning]="true"\r
79460
+ class="filling-form-fields-item-hint"\r
79461
+ >\r
79462
+ {{ 'Previously saved value' | translate }}: {{ previousValue }}\r
79463
+ </mat-hint>\r
79464
+ }\r
79465
+ \r
79466
+ <mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>\r
79467
+ </mat-form-field>\r
79468
+ </div>\r
79469
+ }\r
79470
+ \r
79471
+ @case (types.Input) {\r
79472
+ <div\r
79473
+ [class.warning]="!!previousValue"\r
79474
+ class="filling-form-fields-item {{field.class ?? 'span-6'}}"\r
79475
+ >\r
79476
+ @if (field.label) {\r
79477
+ <span\r
79478
+ [class.warning]="!!previousValue"\r
79479
+ class="filling-form-fields-item-label body-1-regular"\r
79480
+ >\r
79481
+ {{ (field.label | translate) + (field.required ? " *" : "") }}\r
79482
+ </span>\r
79483
+ \r
79484
+ <mat-form-field appearance="outline">\r
79485
+ <input\r
79486
+ matInput\r
79487
+ [readonly]="field.readonly"\r
79488
+ [formControlName]="field.formControlName"\r
79489
+ (input)="field.onChange && field.onChange(form)"\r
79490
+ />\r
79491
+ \r
79492
+ @if (previousValue != null) {\r
79493
+ <mat-hint\r
79494
+ [class.warning]="true"\r
79495
+ class="filling-form-fields-item-hint"\r
79496
+ >{{ 'Previously saved value' | translate }}: {{ previousValue }}</mat-hint\r
79497
+ >\r
79498
+ }\r
79499
+ \r
79500
+ @if (previousValue != null) {\r
79501
+ <mat-icon\r
79502
+ [class.warning]="true"\r
79503
+ class="filling-form-fields-item-icon"\r
79504
+ matSuffix\r
79505
+ >warning_amber</mat-icon\r
79506
+ >\r
79507
+ }\r
79508
+ \r
79509
+ <mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>\r
79510
+ </mat-form-field>\r
79511
+ }\r
79512
+ </div>\r
79513
+ }\r
79514
+ @case (types.TextArea) {\r
79515
+ <div class="filling-form-fields-item text-area {{field.class ?? 'span-6'}}">\r
79516
+ @if (field.label) {\r
79517
+ <span class="filling-form-fields-item-label body-1-regular">\r
79518
+ {{ (field.label | translate) + (field.required ? " *" : "") }}\r
79519
+ </span>\r
79520
+ \r
79521
+ <mat-form-field appearance="outline">\r
79522
+ <textarea\r
79523
+ matInput\r
79524
+ [readonly]="field.readonly"\r
79525
+ [formControlName]="field.formControlName"\r
79526
+ (change)="field.onChange && field.onChange(form)"\r
79527
+ ></textarea>\r
79528
+ </mat-form-field>\r
79529
+ }\r
79530
+ </div>\r
79531
+ }\r
79532
+ @case (types.CheckboxList) {\r
79533
+ <checkbox-list class="{{field.class}}" [formControlName]="field.formControlName" [items]="field.options ?? []"/>\r
79534
+ }\r
79535
+ @case (types.Text) {\r
79536
+ @let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn, prevData()) : field.label;\r
79537
+ @if (label) {\r
79538
+ <p [class.last]="last" class="filling-form-fields-item-text body-1-regular grey" [class]="field.class" [innerHTML]="label" ></p>\r
79539
+ }\r
79540
+ }\r
79541
+ }\r
79542
+ }\r
79543
+ }\r
79544
+ </div>\r
79545
+ </section>\r
79545
79546
  `, styles: ['/* src/app/components/form/filing-form-group/filing-form-group.component.scss */\n:host {\n overflow: hidden;\n}\n:host .filling-form-fields {\n display: grid;\n grid-template-columns: repeat(12, 1fr);\n column-gap: 16px;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select {\n display: flex;\n}\n:host .filling-form-fields ::ng-deep .mdc-checkbox__background {\n border: 3px solid #6a6c6f;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-arrow-wrapper {\n display: none;\n}\n:host .filling-form-fields ::ng-deep .suffix-container {\n display: flex;\n align-items: center;\n padding-right: 12px;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-form-field-icon-suffix {\n display: flex;\n align-items: center;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-form-field-icon-suffix .mat-icon {\n display: flex;\n align-items: center;\n}\n:host .filling-form-fields ::ng-deep .arrow-icon {\n pointer-events: none;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-form-field-infix {\n display: flex !important;\n font-size: 14px !important;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value-text {\n font-size: 14px !important;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value {\n font-size: 14px !important;\n}\n:host .filling-form-fields ::ng-deep .mdc-label {\n font-size: 14px !important;\n}\n:host .filling-form-fields-checkbox {\n display: flex;\n flex-direction: column;\n justify-content: center;\n line-height: 2rem;\n}\n:host .filling-form-fields-checkbox:not(.last) {\n padding-bottom: 16px;\n}\n:host .filling-form-fields-checkbox-text {\n display: flex;\n align-items: center;\n gap: 8px;\n line-height: 20px;\n color: var(--filing-modal-color-grey);\n}\n:host .filling-form-fields-empty {\n width: 100%;\n height: 80px;\n}\n:host .filling-form-fields-item {\n --mat-sys-primary: #6b6f76;\n --mat-sys-primary-container: #e4e5e8;\n --mat-sys-surface-tint: #6b6f76;\n --mat-sys-outline: #c7c9cf;\n --mat-sys-outline-variant: #dfe1e6;\n --mdc-icon-button-state-layer-size: 36px;\n display: flex;\n flex-direction: column;\n gap: 4px;\n}\n:host .filling-form-fields-item.text-area ::ng-deep .mat-mdc-text-field-wrapper {\n padding: 0 !important;\n}\n:host .filling-form-fields-item.text-area ::ng-deep .mat-mdc-input-element {\n padding: 0 12px;\n min-height: 230px !important;\n max-height: 230px !important;\n}\n:host .filling-form-fields-item-text {\n font-size: 14px !important;\n}\n:host .filling-form-fields-item-text:not(.last) {\n padding-bottom: 16px;\n}\n:host .filling-form-fields-item-hint {\n display: flex;\n align-items: center;\n font-size: 12px;\n}\n:host .filling-form-fields-item.warning {\n --mdc-outlined-text-field-outline-color: #845400;\n --mdc-outlined-text-field-outline-width: 2px;\n --mat-sys-on-surface: #845400;\n color: #845400;\n padding-bottom: 16px;\n}\n:host .filling-form-fields-item-label {\n color: var(--filing-modal-color-grey);\n}\n:host .filling-form-fields-item-label.warning {\n color: #845400;\n}\n:host .filling-form-fields-item-hint.warning {\n color: #845400;\n}\n:host .filling-form-fields-item-icon {\n font-size: 22px;\n line-height: 22px;\n height: 22px;\n width: 22px;\n}\n:host .filling-form-fields-item-icon.warning {\n color: #845400;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid {\n padding: 0 0 12px;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mdc-notched-outline__leading {\n border-color: #ff3e3e !important;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mdc-notched-outline__trailing {\n border-color: #E22222 !important;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-datepicker-toggle-default-icon {\n color: #E22222 !important;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-mdc-form-field-error-wrapper {\n padding: 0;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-mdc-form-field-error {\n color: #E22222 !important;\n font-size: 12px;\n font-family: "Open Sans";\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-mdc-select-arrow {\n color: #E22222 !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-icon {\n color: #4a4a4a !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mdc-notched-outline__leading {\n border-color: #d6d6d6 !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mdc-notched-outline__trailing {\n border-color: #d6d6d6 !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-datepicker-toggle-default-icon {\n color: #4a4a4a !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-mdc-form-field-error {\n display: none;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-mdc-select-arrow {\n color: #d6d6d6 !important;\n}\n:host .filling-form-fields ::ng-deep {\n --mat-form-field-container-vertical-padding: 6px;\n --mat-form-field-container-height: 36px;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value {\n line-height: 18px;\n}\n:host .filling-form-fields ::ng-deep input,\n:host .filling-form-fields ::ng-deep textarea {\n font-family: "Open Sans";\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value-text {\n font-family: "Open Sans";\n}\n:host .filling-form-fields ::ng-deep .mdc-text-field--disabled {\n background-color: #F5F5F5 !important;\n}\n:host .filling-form-fields ::ng-deep .mdc-notched-outline__leading {\n border-width: 1px !important;\n border-color: #d6d6d6 !important;\n border-top-left-radius: 8px;\n border-bottom-left-radius: 8px;\n}\n:host .filling-form-fields ::ng-deep .mdc-notched-outline__trailing {\n border-width: 1px !important;\n border-color: #d6d6d6 !important;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n}\n:host .filling-form-fields ::ng-deep .mdc-icon-button .mat-icon {\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n}\n:host .span-1 {\n grid-column: span 1;\n}\n:host .span-2 {\n grid-column: span 2;\n}\n:host .span-3 {\n grid-column: span 3;\n}\n:host .span-4 {\n grid-column: span 4;\n}\n:host .span-5 {\n grid-column: span 5;\n}\n:host .span-6 {\n grid-column: span 6;\n}\n:host .span-8 {\n grid-column: span 8;\n}\n:host .span-12 {\n grid-column: span 12;\n}\n:host .column-1 {\n grid-column: 1/span 2;\n}\n:host .column-2 {\n grid-column: 1/span 4;\n}\n:host .column-3 {\n grid-column: 1/span 6;\n}\n:host ::ng-deep input {\n font-size: 14px !important;\n color: var(--filing-modal-color-grey) !important;\n}\n.filing-form-group-select-option {\n background: white !important;\n}\n.filing-form-group-select-option ::ng-deep .mat-pseudo-checkbox-checked {\n background: transparent !important;\n}\n.filing-form-group-select-option ::ng-deep .mdc-list-item__primary-text {\n font-family: "Open Sans";\n font-size: 14px !important;\n}\n/*# sourceMappingURL=filing-form-group.component.css.map */\n'] }]
79546
79547
  }], () => [], null);
79547
79548
  })();
@@ -79801,70 +79802,70 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
79801
79802
  FilingFormGroupComponent,
79802
79803
  TranslatePipe,
79803
79804
  MatButton
79804
- ], template: `<div class="terms-and-conditions">
79805
- <div class="terms-and-conditions-content">
79806
- <expandable-card class="terms-and-conditions-card" title="Terms and Conditions">
79807
-
79808
- <div class="terms-and-conditions-card-content">
79809
- <div class="terms-and-conditions-text-wrapper">
79810
- <div class="terms-and-conditions-text">
79811
- <span class="body-1-regular">{{ 'TERMS.intro' | translate }}</span>
79812
- <span class="body-1-regular">{{ 'TERMS.agreement_mandatory' | translate }}</span>
79813
- <span class="body-1-regular">{{ 'TERMS.clause_i' | translate }}</span>
79814
- <span class="body-1-regular">{{ 'TERMS.clause_ii' | translate }}</span>
79815
- <span class="body-1-regular">{{ 'TERMS.authority' | translate }}</span>
79816
- <span class="body-1-regular">{{ 'TERMS.bound' | translate }}</span>
79817
- <span class="body-1-regular">{{ 'TERMS.section_1' | translate }}</span>
79818
- <span class="body-1-regular">{{ 'TERMS.section_2' | translate }}</span>
79819
- <span class="body-1-regular">{{ 'TERMS.section_3' | translate }}</span>
79820
- <span class="body-1-regular">{{ 'TERMS.section_4' | translate }}</span>
79821
- <span class="body-1-regular">{{ 'TERMS.section_5' | translate }}</span>
79822
- <span class="body-1-regular">{{ 'TERMS.section_6' | translate }}</span>
79823
- <span class="body-1-regular">{{ 'TERMS.section_7' | translate }}</span>
79824
- <span class="body-1-regular">{{ 'TERMS.section_8' | translate }}</span>
79825
- <span class="body-1-regular">{{ 'TERMS.section_9' | translate }}</span>
79826
- <span class="body-1-regular">{{ 'TERMS.section_10' | translate }}</span>
79827
- <span class="body-1-regular">{{ 'TERMS.section_11' | translate }}</span>
79828
- <span class="body-1-regular">{{ 'TERMS.section_12' | translate }}</span>
79829
- <span class="body-1-regular">{{ 'TERMS.section_13' | translate }}</span>
79830
- <span class="body-1-regular">{{ 'TERMS.section_14' | translate }}</span>
79831
- <span class="body-1-regular">{{ 'TERMS.section_15' | translate }}</span>
79832
- <span class="body-1-regular">{{ 'TERMS.section_16' | translate }}</span>
79833
- <span class="body-1-regular">{{ 'TERMS.section_17' | translate }}</span>
79834
- </div>
79835
- </div>
79836
-
79837
- <mat-checkbox [formControl]="getFormControl(termsAndConditionsControls.AcceptTerms)">
79838
- <div class="body-1-regular black">
79839
- <span>{{ 'I agree to the Terms and Conditions and confirm that all required person(s) and/or entities agree to them' | translate }}</span>
79840
- </div>
79841
- </mat-checkbox>
79842
- </div>
79843
-
79844
- </expandable-card>
79845
-
79846
- <expandable-card title="Signatory">
79847
- <filing-form-group [isSubmitted]="true" [form]="form" [config]="termsAndConditionsFields"/>
79848
- </expandable-card>
79849
- </div>
79850
-
79851
- <div class="terms-and-conditions-form-actions">
79852
- <button mat-stroked-button mat-button (click)="close.emit()">
79853
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
79854
- </button>
79855
-
79856
- <button mat-stroked-button mat-button (click)="prev.emit()"><span class="body-1-semibold">{{ 'Back' | translate }}</span></button>
79857
-
79858
- <button
79859
- mat-flat-button
79860
- type="submit"
79861
- (click)="onConfirm()"
79862
- [disabled]="form.invalid"
79863
- >
79864
- <span class="body-1-semibold">{{ 'Proceed' | translate }}</span>
79865
- </button>
79866
- </div>
79867
- </div>
79805
+ ], template: `<div class="terms-and-conditions">\r
79806
+ <div class="terms-and-conditions-content">\r
79807
+ <expandable-card class="terms-and-conditions-card" title="Terms and Conditions">\r
79808
+ \r
79809
+ <div class="terms-and-conditions-card-content">\r
79810
+ <div class="terms-and-conditions-text-wrapper">\r
79811
+ <div class="terms-and-conditions-text">\r
79812
+ <span class="body-1-regular">{{ 'TERMS.intro' | translate }}</span>\r
79813
+ <span class="body-1-regular">{{ 'TERMS.agreement_mandatory' | translate }}</span>\r
79814
+ <span class="body-1-regular">{{ 'TERMS.clause_i' | translate }}</span>\r
79815
+ <span class="body-1-regular">{{ 'TERMS.clause_ii' | translate }}</span>\r
79816
+ <span class="body-1-regular">{{ 'TERMS.authority' | translate }}</span>\r
79817
+ <span class="body-1-regular">{{ 'TERMS.bound' | translate }}</span>\r
79818
+ <span class="body-1-regular">{{ 'TERMS.section_1' | translate }}</span>\r
79819
+ <span class="body-1-regular">{{ 'TERMS.section_2' | translate }}</span>\r
79820
+ <span class="body-1-regular">{{ 'TERMS.section_3' | translate }}</span>\r
79821
+ <span class="body-1-regular">{{ 'TERMS.section_4' | translate }}</span>\r
79822
+ <span class="body-1-regular">{{ 'TERMS.section_5' | translate }}</span>\r
79823
+ <span class="body-1-regular">{{ 'TERMS.section_6' | translate }}</span>\r
79824
+ <span class="body-1-regular">{{ 'TERMS.section_7' | translate }}</span>\r
79825
+ <span class="body-1-regular">{{ 'TERMS.section_8' | translate }}</span>\r
79826
+ <span class="body-1-regular">{{ 'TERMS.section_9' | translate }}</span>\r
79827
+ <span class="body-1-regular">{{ 'TERMS.section_10' | translate }}</span>\r
79828
+ <span class="body-1-regular">{{ 'TERMS.section_11' | translate }}</span>\r
79829
+ <span class="body-1-regular">{{ 'TERMS.section_12' | translate }}</span>\r
79830
+ <span class="body-1-regular">{{ 'TERMS.section_13' | translate }}</span>\r
79831
+ <span class="body-1-regular">{{ 'TERMS.section_14' | translate }}</span>\r
79832
+ <span class="body-1-regular">{{ 'TERMS.section_15' | translate }}</span>\r
79833
+ <span class="body-1-regular">{{ 'TERMS.section_16' | translate }}</span>\r
79834
+ <span class="body-1-regular">{{ 'TERMS.section_17' | translate }}</span>\r
79835
+ </div>\r
79836
+ </div>\r
79837
+ \r
79838
+ <mat-checkbox [formControl]="getFormControl(termsAndConditionsControls.AcceptTerms)">\r
79839
+ <div class="body-1-regular black">\r
79840
+ <span>{{ 'I agree to the Terms and Conditions and confirm that all required person(s) and/or entities agree to them' | translate }}</span>\r
79841
+ </div>\r
79842
+ </mat-checkbox>\r
79843
+ </div>\r
79844
+ \r
79845
+ </expandable-card>\r
79846
+ \r
79847
+ <expandable-card title="Signatory">\r
79848
+ <filing-form-group [isSubmitted]="true" [form]="form" [config]="termsAndConditionsFields"/>\r
79849
+ </expandable-card>\r
79850
+ </div>\r
79851
+ \r
79852
+ <div class="terms-and-conditions-form-actions">\r
79853
+ <button mat-stroked-button mat-button (click)="close.emit()">\r
79854
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
79855
+ </button>\r
79856
+ \r
79857
+ <button mat-stroked-button mat-button (click)="prev.emit()"><span class="body-1-semibold">{{ 'Back' | translate }}</span></button>\r
79858
+ \r
79859
+ <button\r
79860
+ mat-flat-button\r
79861
+ type="submit"\r
79862
+ (click)="onConfirm()"\r
79863
+ [disabled]="form.invalid"\r
79864
+ >\r
79865
+ <span class="body-1-semibold">{{ 'Proceed' | translate }}</span>\r
79866
+ </button>\r
79867
+ </div>\r
79868
+ </div>\r
79868
79869
  `, styles: ["/* src/app/components/terms-and-conditions/terms-and-conditions.component.scss */\n:host .terms-and-conditions {\n --mdc-outlined-text-field-outline-color: #e8e8e8;\n --mat-form-field-filled-with-label-container-padding-top: 12px;\n --mat-form-field-filled-with-label-container-padding-bottom: 2px;\n --mat-form-field-container-height: 36px;\n --mdc-filled-text-field-container-color: transparent;\n height: 100%;\n color: #8c8e90;\n}\n:host .terms-and-conditions ::ng-deep .mdc-label {\n font-size: 14px !important;\n}\n:host .terms-and-conditions-card-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: calc(100% - 25px);\n}\n:host .terms-and-conditions-text-wrapper {\n border: 1px solid #A1B5C7;\n border-radius: 8px;\n overflow: hidden;\n}\n:host .terms-and-conditions-text {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n overflow: auto;\n max-height: 420px;\n padding: 8px;\n color: var(--filing-modal-color-grey);\n}\n:host .terms-and-conditions-form {\n height: 100%;\n padding-top: 16px;\n display: flex;\n flex-direction: column;\n gap: 12px;\n}\n:host .terms-and-conditions-form-title {\n color: black;\n margin: 0;\n}\n:host .terms-and-conditions-form-input {\n width: 100%;\n}\n:host .terms-and-conditions-form-input::ng-deep .mdc-text-field,\n:host .terms-and-conditions-form-input::ng-deep .mat-mdc-form-field-error-wrapper {\n padding: 0;\n}\n:host .terms-and-conditions-form-container {\n display: flex;\n gap: 16px;\n}\n:host .terms-and-conditions-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .terms-and-conditions-form-actions button {\n margin: 0;\n}\n:host .terms-and-conditions-content {\n height: calc(100% - 67px);\n overflow: auto;\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n/*# sourceMappingURL=terms-and-conditions.component.css.map */\n"] }]
79869
79870
  }], null, null);
79870
79871
  })();
@@ -80128,7 +80129,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
80128
80129
  TranslatePipe,
80129
80130
  FilingFormGroupComponent,
80130
80131
  ExpandableCardComponent
80131
- ], changeDetection: ChangeDetectionStrategy.OnPush, animations: [
80132
+ ], standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, animations: [
80132
80133
  trigger("expandCollapse", [
80133
80134
  state("true", style({
80134
80135
  height: "*",
@@ -80144,88 +80145,88 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
80144
80145
  animate("100ms cubic-bezier(0.4, 0.0, 0.2, 1)")
80145
80146
  ])
80146
80147
  ])
80147
- ], template: `<div class="expandable-card">
80148
- <div
80149
- [class.expanded]="isExpanded()"
80150
- (click)="toggle()"
80151
- class="expandable-card-header"
80152
- >
80153
- <h2 class="expandable-card-header-title">{{ title() | translate }}</h2>
80154
-
80155
- <div class="expandable-card-header-container">
80156
- @if (isStatusIcon()) {
80157
- @if (!isValid()) {
80158
- <mat-icon class="expandable-card-header-status-icon">
80159
- error_outline
80160
- </mat-icon>
80161
- }
80162
- }
80163
-
80164
- <mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon>
80165
- </div>
80166
- </div>
80167
-
80168
- <div class="expandable-card-content" [@expandCollapse]="isExpanded()">
80169
- <ng-content select="[slot='header-content']"></ng-content>
80170
- <div class="expandable-card-actions">
80171
- <div>
80172
- <ng-content select="[slot='subtitle']"></ng-content>
80173
- </div>
80174
-
80175
- @if (controlsCount() !== 0) {
80176
- <div class="expandable-card-actions-items">
80177
- <h3 class="expandable-card-actions-item" (click)="expandAll()">
80178
- {{ "Expand all" | translate }}
80179
- </h3>
80180
- <h3 class="expandable-card-actions-separator">|</h3>
80181
- <h3 class="expandable-card-actions-item" (click)="collapseAll()">
80182
- {{ "Collapse all" | translate }}
80183
- </h3>
80184
- </div>
80185
- }
80186
- </div>
80187
-
80188
- @for (formGroup of formArray().controls; let i = $index; track formGroup) {
80189
- <div class="expandable-card-separator">
80190
- <div class="expandable-card-separator-line"></div>
80191
- </div>
80192
-
80193
- <expandable-card
80194
- [isListItem]="true"
80195
- [title]="getFormGroup(i).get(labelKey())?.value"
80196
- [role]="getFormGroup(i).get(roleKey())?.value"
80197
- [isStatusIcon]="isStatusIcon()"
80198
- [isValid]="getFormGroupValid(i)"
80199
- [isOpen]="isItemExpanded(i)"
80200
- [border]="false"
80201
- [padded]="false"
80202
- [chipType]="
80203
- affiliationTypeToChipType(
80204
- formGroup.get(controls.AffiliationType)?.value
80205
- )
80206
- "
80207
- [removable]="removable()"
80208
- (toggled)="toggleItem(i)"
80209
- (remove)="remove.emit(i)"
80210
- >
80211
- @let form = getFormGroup(i);
80212
- @let configValue =
80213
- fields() ?? config()?.[form.get(configKey())?.value] ?? [];
80214
- <filing-form-group
80215
- [prevData]="prevData()"
80216
- [isSubmitted]="isSubmitted()"
80217
- [form]="form"
80218
- [config]="configValue"
80219
- />
80220
- </expandable-card>
80221
- }
80222
- </div>
80223
- </div>
80148
+ ], template: `<div class="expandable-card">\r
80149
+ <div\r
80150
+ [class.expanded]="isExpanded()"\r
80151
+ (click)="toggle()"\r
80152
+ class="expandable-card-header"\r
80153
+ >\r
80154
+ <h2 class="expandable-card-header-title">{{ title() | translate }}</h2>\r
80155
+ \r
80156
+ <div class="expandable-card-header-container">\r
80157
+ @if (isStatusIcon()) {\r
80158
+ @if (!isValid()) {\r
80159
+ <mat-icon class="expandable-card-header-status-icon">\r
80160
+ error_outline\r
80161
+ </mat-icon>\r
80162
+ }\r
80163
+ }\r
80164
+ \r
80165
+ <mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon>\r
80166
+ </div>\r
80167
+ </div>\r
80168
+ \r
80169
+ <div class="expandable-card-content" [@expandCollapse]="isExpanded()">\r
80170
+ <ng-content select="[slot='header-content']"></ng-content>\r
80171
+ <div class="expandable-card-actions">\r
80172
+ <div>\r
80173
+ <ng-content select="[slot='subtitle']"></ng-content>\r
80174
+ </div>\r
80175
+ \r
80176
+ @if (controlsCount() !== 0) {\r
80177
+ <div class="expandable-card-actions-items">\r
80178
+ <h3 class="expandable-card-actions-item" (click)="expandAll()">\r
80179
+ {{ "Expand all" | translate }}\r
80180
+ </h3>\r
80181
+ <h3 class="expandable-card-actions-separator">|</h3>\r
80182
+ <h3 class="expandable-card-actions-item" (click)="collapseAll()">\r
80183
+ {{ "Collapse all" | translate }}\r
80184
+ </h3>\r
80185
+ </div>\r
80186
+ }\r
80187
+ </div>\r
80188
+ \r
80189
+ @for (formGroup of formArray().controls; let i = $index; track formGroup) {\r
80190
+ <div class="expandable-card-separator">\r
80191
+ <div class="expandable-card-separator-line"></div>\r
80192
+ </div>\r
80193
+ \r
80194
+ <expandable-card\r
80195
+ [isListItem]="true"\r
80196
+ [title]="getFormGroup(i).get(labelKey())?.value"\r
80197
+ [role]="getFormGroup(i).get(roleKey())?.value"\r
80198
+ [isStatusIcon]="isStatusIcon()"\r
80199
+ [isValid]="getFormGroupValid(i)"\r
80200
+ [isOpen]="isItemExpanded(i)"\r
80201
+ [border]="false"\r
80202
+ [padded]="false"\r
80203
+ [chipType]="\r
80204
+ affiliationTypeToChipType(\r
80205
+ formGroup.get(controls.AffiliationType)?.value\r
80206
+ )\r
80207
+ "\r
80208
+ [removable]="removable()"\r
80209
+ (toggled)="toggleItem(i)"\r
80210
+ (remove)="remove.emit(i)"\r
80211
+ >\r
80212
+ @let form = getFormGroup(i);\r
80213
+ @let configValue =\r
80214
+ fields() ?? config()?.[form.get(configKey())?.value] ?? [];\r
80215
+ <filing-form-group\r
80216
+ [prevData]="prevData()"\r
80217
+ [isSubmitted]="isSubmitted()"\r
80218
+ [form]="form"\r
80219
+ [config]="configValue"\r
80220
+ />\r
80221
+ </expandable-card>\r
80222
+ }\r
80223
+ </div>\r
80224
+ </div>\r
80224
80225
  `, styles: ["/* src/app/components/expandable-list-card/expandable-list-card.component.scss */\n:host .expandable-card {\n padding: 16px 0;\n box-shadow:\n 0 1px 2px rgba(0, 0, 0, 0.08),\n 0 2px 4px rgba(0, 0, 0, 0.12),\n 0 0 0 1px rgba(0, 0, 0, 0.04);\n border-radius: 8px;\n margin: 1px;\n}\n:host .expandable-card-header {\n padding: 0 16px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n transition: padding-bottom ease-in-out 250ms;\n}\n:host .expandable-card-header.expanded {\n padding-bottom: 16px;\n}\n:host .expandable-card-header-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n:host .expandable-card-header-title {\n color: #666666;\n font-weight: 700;\n font-size: 14px;\n}\n:host .expandable-card-header-container {\n display: flex;\n align-items: center;\n gap: 16px;\n}\n:host .expandable-card-header-status-icon {\n font-weight: 400;\n color: #F1D01E;\n font-size: 22px;\n height: 22px;\n width: 22px;\n}\n:host .expandable-card-header-status-icon.added {\n color: #44aa00;\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon) {\n display: flex;\n align-items: center;\n justify-content: center;\n transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1);\n transform: rotate(-90deg);\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon).rotated {\n transform: rotate(90deg);\n}\n:host .expandable-card-actions {\n padding: 0 16px 0 16px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .expandable-card-actions-items {\n display: flex;\n align-items: center;\n gap: 4px;\n font-size: 14px;\n}\n:host .expandable-card-actions-separator {\n padding: 0 2px;\n color: var(--filing-modal-color-grey);\n font-size: 14px;\n}\n:host .expandable-card-actions-item {\n color: var(--filing-modal-color-light-blue);\n cursor: pointer;\n font-size: 14px;\n}\n:host .expandable-card-actions-item:hover {\n text-decoration: underline;\n}\n:host .expandable-card expandable-card {\n display: block;\n padding: 0 16px;\n}\n:host .expandable-card-separator {\n width: 100%;\n padding: 18px 16px;\n}\n:host .expandable-card-separator-line {\n background-color: var(--filing-modal-color-grey-mid);\n height: 1px;\n width: 100%;\n}\n/*# sourceMappingURL=expandable-list-card.component.css.map */\n"] }]
80225
80226
  }], () => [], null);
80226
80227
  })();
80227
80228
  (() => {
80228
- (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ExpandableListCardComponent, { className: "ExpandableListCardComponent", filePath: "src/app/components/expandable-list-card/expandable-list-card.component.ts", lineNumber: 66 });
80229
+ (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ExpandableListCardComponent, { className: "ExpandableListCardComponent", filePath: "src/app/components/expandable-list-card/expandable-list-card.component.ts", lineNumber: 67 });
80229
80230
  })();
80230
80231
  }
80231
80232
  });
@@ -80339,7 +80340,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
80339
80340
  (() => {
80340
80341
  (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(AlertComponent, [{
80341
80342
  type: Component,
80342
- args: [{ selector: "alert", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="alert {{type()}}">\n @switch (type()) {\n @case (alertType.Warning) {\n <mat-icon class="alert-icon">warning</mat-icon>\n\n }\n @case (alertType.Info) {\n <mat-icon class="alert-icon">info_outlined</mat-icon>\n }\n }\n <div class="alert-text">\n <span class="alert-text-title">{{title() | translate}}</span>\n\n @if (isArray()) {\n <ul class="alert-options">\n @for(option of content(); track option) {\n <li>{{option}}</li>\n }\n </ul>\n }@else {\n <span>{{$any(content()) | translate}}</span>\n }\n </div>\n\n</div>\n', styles: ["/* src/app/components/alert/alert.component.scss */\n:host .alert {\n display: flex;\n align-items: center;\n padding: 12px 10px;\n border-radius: 12px;\n gap: 8px;\n border: 1px solid var(--filing-modal-color-grey);\n}\n:host .alert.warning {\n border: 1px solid #F1D01E;\n}\n:host .alert.warning .alert-icon {\n color: #F1D01E;\n font-size: 20px;\n}\n:host .alert-text {\n display: flex;\n flex-direction: column;\n gap: 12px;\n color: var(--filing-modal-color-grey);\n font-size: 14px;\n}\n:host .alert-text-title {\n font-weight: 600;\n}\n:host .alert-options {\n margin: 0;\n padding: 0 24px;\n}\n/*# sourceMappingURL=alert.component.css.map */\n"] }]
80343
+ args: [{ selector: "alert", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="alert {{type()}}">\r\n @switch (type()) {\r\n @case (alertType.Warning) {\r\n <mat-icon class="alert-icon">warning</mat-icon>\r\n\r\n }\r\n @case (alertType.Info) {\r\n <mat-icon class="alert-icon">info_outlined</mat-icon>\r\n }\r\n }\r\n <div class="alert-text">\r\n <span class="alert-text-title">{{title() | translate}}</span>\r\n\r\n @if (isArray()) {\r\n <ul class="alert-options">\r\n @for(option of content(); track option) {\r\n <li>{{option}}</li>\r\n }\r\n </ul>\r\n }@else {\r\n <span>{{$any(content()) | translate}}</span>\r\n }\r\n </div>\r\n\r\n</div>\r\n', styles: ["/* src/app/components/alert/alert.component.scss */\n:host .alert {\n display: flex;\n align-items: center;\n padding: 12px 10px;\n border-radius: 12px;\n gap: 8px;\n border: 1px solid var(--filing-modal-color-grey);\n}\n:host .alert.warning {\n border: 1px solid #F1D01E;\n}\n:host .alert.warning .alert-icon {\n color: #F1D01E;\n font-size: 20px;\n}\n:host .alert-text {\n display: flex;\n flex-direction: column;\n gap: 12px;\n color: var(--filing-modal-color-grey);\n font-size: 14px;\n}\n:host .alert-text-title {\n font-weight: 600;\n}\n:host .alert-options {\n margin: 0;\n padding: 0 24px;\n}\n/*# sourceMappingURL=alert.component.css.map */\n"] }]
80343
80344
  }], null, null);
80344
80345
  })();
80345
80346
  (() => {
@@ -80717,183 +80718,183 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
80717
80718
  ExpandableListCardComponent,
80718
80719
  AlertComponent,
80719
80720
  TranslatePipe
80720
- ], template: `<div class="incorporation-form">
80721
- @if (isNote()) {
80722
- <alert
80723
- [type]="alertType.Info"
80724
- title="Entity changed"
80725
- content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
80726
- />
80727
- }
80728
-
80729
- @if (errors().length) {
80730
- <alert
80731
- title="The following issues need to be resolved before proceeding:"
80732
- [content]="errors()"
80733
- />
80734
- }
80735
-
80736
- <div class="incorporation-form-content">
80737
- @let referenceNumbers = getFormGroup(groups.ReferenceNumbers);
80738
-
80739
- @if (referenceNumbers) {
80740
- <expandable-card [title]="groups.ReferenceNumbers">
80741
- <div class="incorporation-form-item">
80742
- <filing-form-group
80743
- [isSubmitted]="isSubmitted()"
80744
- [form]="referenceNumbers"
80745
- [config]="referenceNumbersFields"
80746
- (visiblyValidChange)="onSectionValidChange('refNumbers', $event)"
80747
- />
80748
- </div>
80749
- </expandable-card>
80750
- }
80751
-
80752
- @let corporationDetails = getFormGroup(groups.CorporationDetails);
80753
-
80754
- @if (corporationDetails) {
80755
- <expandable-card
80756
- [isValid]="sectionValidity['corpDetails']"
80757
- [isStatusIcon]="statusIcon()"
80758
- [title]="groups.CorporationDetails"
80759
- >
80760
- <div class="incorporation-form-item">
80761
- <filing-form-group
80762
- [isSubmitted]="isSubmitted()"
80763
- [form]="corporationDetails"
80764
- [config]="corporationDetailsCardFields"
80765
- (visiblyValidChange)="onSectionValidChange('corpDetails', $event)"
80766
- />
80767
- </div>
80768
- </expandable-card>
80769
- }
80770
-
80771
- @if (isLegalOpinion) {
80772
- @let legalOpinion = getFormGroup(groups.LegalOpinion);
80773
-
80774
- @if (legalOpinion) {
80775
- <expandable-card
80776
- [isValid]="
80777
- sectionValidity['legalOpinionLawyer'] &&
80778
- sectionValidity['legalOpinionAddress']
80779
- "
80780
- [isStatusIcon]="statusIcon()"
80781
- [title]="groups.LegalOpinion"
80782
- >
80783
- <filing-form-group
80784
- [isSubmitted]="isSubmitted()"
80785
- [form]="legalOpinion"
80786
- [config]="legalOpinionLawyerFields()"
80787
- (visiblyValidChange)="
80788
- onSectionValidChange('legalOpinionLawyer', $event)
80789
- "
80790
- />
80791
-
80792
- @if (legalOpinion.get(controls.LawyerSigningOpinion)?.value) {
80793
- <filing-form-group
80794
- [isSubmitted]="isSubmitted()"
80795
- [form]="legalOpinion"
80796
- [config]="legalOpinionConfirmAddressFieldsMap[legalOpinion.get(controls.AffiliationAddressType)?.value]"
80797
- (visiblyValidChange)="
80798
- onSectionValidChange('legalOpinionAddress', $event)
80799
- "
80800
- />
80801
- }
80802
-
80803
- </expandable-card>
80804
- }
80805
- }
80806
-
80807
- @let registeredOfficeForm = getFormGroup(groups.RegisteredOfficeAddress);
80808
-
80809
- @if (registeredOfficeForm) {
80810
- <expandable-card
80811
- [isValid]="sectionValidity['registeredOffice']"
80812
- [isStatusIcon]="statusIcon()"
80813
- [title]="groups.RegisteredOfficeAddress"
80814
- >
80815
- <filing-form-group
80816
- [isSubmitted]="isSubmitted()"
80817
- [form]="registeredOfficeForm"
80818
- [config]="
80819
- affiliationCardFieldsMap[
80820
- registeredOfficeForm.get(
80821
- formationFormControls.AffiliationAddressType
80822
- )?.value
80823
- ]
80824
- "
80825
- (visiblyValidChange)="
80826
- onSectionValidChange('registeredOffice', $event)
80827
- "
80828
- />
80829
- </expandable-card>
80830
- }
80831
-
80832
- @let incorporatorsArray = getFormArray(groups.Incorporators);
80833
- @let directorsArray = getFormArray(groups.Directors);
80834
-
80835
- @let isOpenDirectors =
80836
- (directorsArray?.length ?? 0) <= initiallyOpenCardsCount;
80837
- @if (directorsArray && directorsArray.length) {
80838
- <expandable-list-card
80839
- [isValid]="sectionValidity['directors']"
80840
- [areItemsOpen]="isOpenDirectors"
80841
- [isStatusIcon]="statusIcon()"
80842
- [config]="directorsCardFieldsMap"
80843
- [configKey]="controls.AffiliationAddressType"
80844
- [formArray]="directorsArray"
80845
- [title]="groups.Directors"
80846
- (visiblyValidChange)="onSectionValidChange('directors', $event)"
80847
- >
80848
- <p
80849
- slot="subtitle"
80850
- class="body-1-regular black"
80851
- [innerHTML]="directorsSubtitle()"
80852
- ></p>
80853
- </expandable-list-card>
80854
- } @else {
80855
- <expandable-card [title]="groups.Directors">
80856
- <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>
80857
- </expandable-card>
80858
- }
80859
-
80860
- @let sharesAndProvisions = getFormGroup(groups.SharesAndProvisions);
80861
-
80862
- @if (sharesAndProvisions) {
80863
- <expandable-card
80864
- [isStatusIcon]="false"
80865
- [title]="groups.SharesAndProvisions"
80866
- >
80867
- <filing-form-group
80868
- [isSubmitted]="isSubmitted()"
80869
- [form]="sharesAndProvisions"
80870
- [config]="sharesAndProvincesFields"
80871
- />
80872
- </expandable-card>
80873
- }
80874
-
80875
- @let isOpenIncorporators =
80876
- (incorporatorsArray?.length ?? 0) <= initiallyOpenCardsCount;
80877
-
80878
- @if (incorporatorsArray && incorporatorsArray.length) {
80879
- <expandable-list-card
80880
- [isValid]="sectionValidity['incorporators']"
80881
- [areItemsOpen]="isOpenIncorporators"
80882
- [isStatusIcon]="statusIcon()"
80883
- [config]="incorporatorsCardFieldsMap"
80884
- [configKey]="controls.AffiliationAddressType"
80885
- [formArray]="incorporatorsArray"
80886
- [isSubmitted]="isSubmitted()"
80887
- [title]="groups.Incorporators"
80888
- (visiblyValidChange)="onSectionValidChange('incorporators', $event)"
80889
- />
80890
- } @else {
80891
- <expandable-card [title]="groups.Incorporators">
80892
- <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>
80893
- </expandable-card>
80894
- }
80895
- </div>
80896
- </div>
80721
+ ], template: `<div class="incorporation-form">\r
80722
+ @if (isNote()) {\r
80723
+ <alert\r
80724
+ [type]="alertType.Info"\r
80725
+ title="Entity changed"\r
80726
+ content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
80727
+ />\r
80728
+ }\r
80729
+ \r
80730
+ @if (errors().length) {\r
80731
+ <alert\r
80732
+ title="The following issues need to be resolved before proceeding:"\r
80733
+ [content]="errors()"\r
80734
+ />\r
80735
+ }\r
80736
+ \r
80737
+ <div class="incorporation-form-content">\r
80738
+ @let referenceNumbers = getFormGroup(groups.ReferenceNumbers);\r
80739
+ \r
80740
+ @if (referenceNumbers) {\r
80741
+ <expandable-card [title]="groups.ReferenceNumbers">\r
80742
+ <div class="incorporation-form-item">\r
80743
+ <filing-form-group\r
80744
+ [isSubmitted]="isSubmitted()"\r
80745
+ [form]="referenceNumbers"\r
80746
+ [config]="referenceNumbersFields"\r
80747
+ (visiblyValidChange)="onSectionValidChange('refNumbers', $event)"\r
80748
+ />\r
80749
+ </div>\r
80750
+ </expandable-card>\r
80751
+ }\r
80752
+ \r
80753
+ @let corporationDetails = getFormGroup(groups.CorporationDetails);\r
80754
+ \r
80755
+ @if (corporationDetails) {\r
80756
+ <expandable-card\r
80757
+ [isValid]="sectionValidity['corpDetails']"\r
80758
+ [isStatusIcon]="statusIcon()"\r
80759
+ [title]="groups.CorporationDetails"\r
80760
+ >\r
80761
+ <div class="incorporation-form-item">\r
80762
+ <filing-form-group\r
80763
+ [isSubmitted]="isSubmitted()"\r
80764
+ [form]="corporationDetails"\r
80765
+ [config]="corporationDetailsCardFields"\r
80766
+ (visiblyValidChange)="onSectionValidChange('corpDetails', $event)"\r
80767
+ />\r
80768
+ </div>\r
80769
+ </expandable-card>\r
80770
+ }\r
80771
+ \r
80772
+ @if (isLegalOpinion) {\r
80773
+ @let legalOpinion = getFormGroup(groups.LegalOpinion);\r
80774
+ \r
80775
+ @if (legalOpinion) {\r
80776
+ <expandable-card\r
80777
+ [isValid]="\r
80778
+ sectionValidity['legalOpinionLawyer'] &&\r
80779
+ sectionValidity['legalOpinionAddress']\r
80780
+ "\r
80781
+ [isStatusIcon]="statusIcon()"\r
80782
+ [title]="groups.LegalOpinion"\r
80783
+ >\r
80784
+ <filing-form-group\r
80785
+ [isSubmitted]="isSubmitted()"\r
80786
+ [form]="legalOpinion"\r
80787
+ [config]="legalOpinionLawyerFields()"\r
80788
+ (visiblyValidChange)="\r
80789
+ onSectionValidChange('legalOpinionLawyer', $event)\r
80790
+ "\r
80791
+ />\r
80792
+ \r
80793
+ @if (legalOpinion.get(controls.LawyerSigningOpinion)?.value) {\r
80794
+ <filing-form-group\r
80795
+ [isSubmitted]="isSubmitted()"\r
80796
+ [form]="legalOpinion"\r
80797
+ [config]="legalOpinionConfirmAddressFieldsMap[legalOpinion.get(controls.AffiliationAddressType)?.value]"\r
80798
+ (visiblyValidChange)="\r
80799
+ onSectionValidChange('legalOpinionAddress', $event)\r
80800
+ "\r
80801
+ />\r
80802
+ }\r
80803
+ \r
80804
+ </expandable-card>\r
80805
+ }\r
80806
+ }\r
80807
+ \r
80808
+ @let registeredOfficeForm = getFormGroup(groups.RegisteredOfficeAddress);\r
80809
+ \r
80810
+ @if (registeredOfficeForm) {\r
80811
+ <expandable-card\r
80812
+ [isValid]="sectionValidity['registeredOffice']"\r
80813
+ [isStatusIcon]="statusIcon()"\r
80814
+ [title]="groups.RegisteredOfficeAddress"\r
80815
+ >\r
80816
+ <filing-form-group\r
80817
+ [isSubmitted]="isSubmitted()"\r
80818
+ [form]="registeredOfficeForm"\r
80819
+ [config]="\r
80820
+ affiliationCardFieldsMap[\r
80821
+ registeredOfficeForm.get(\r
80822
+ formationFormControls.AffiliationAddressType\r
80823
+ )?.value\r
80824
+ ]\r
80825
+ "\r
80826
+ (visiblyValidChange)="\r
80827
+ onSectionValidChange('registeredOffice', $event)\r
80828
+ "\r
80829
+ />\r
80830
+ </expandable-card>\r
80831
+ }\r
80832
+ \r
80833
+ @let incorporatorsArray = getFormArray(groups.Incorporators);\r
80834
+ @let directorsArray = getFormArray(groups.Directors);\r
80835
+ \r
80836
+ @let isOpenDirectors =\r
80837
+ (directorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r
80838
+ @if (directorsArray && directorsArray.length) {\r
80839
+ <expandable-list-card\r
80840
+ [isValid]="sectionValidity['directors']"\r
80841
+ [areItemsOpen]="isOpenDirectors"\r
80842
+ [isStatusIcon]="statusIcon()"\r
80843
+ [config]="directorsCardFieldsMap"\r
80844
+ [configKey]="controls.AffiliationAddressType"\r
80845
+ [formArray]="directorsArray"\r
80846
+ [title]="groups.Directors"\r
80847
+ (visiblyValidChange)="onSectionValidChange('directors', $event)"\r
80848
+ >\r
80849
+ <p\r
80850
+ slot="subtitle"\r
80851
+ class="body-1-regular black"\r
80852
+ [innerHTML]="directorsSubtitle()"\r
80853
+ ></p>\r
80854
+ </expandable-list-card>\r
80855
+ } @else {\r
80856
+ <expandable-card [title]="groups.Directors">\r
80857
+ <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
80858
+ </expandable-card>\r
80859
+ }\r
80860
+ \r
80861
+ @let sharesAndProvisions = getFormGroup(groups.SharesAndProvisions);\r
80862
+ \r
80863
+ @if (sharesAndProvisions) {\r
80864
+ <expandable-card\r
80865
+ [isStatusIcon]="false"\r
80866
+ [title]="groups.SharesAndProvisions"\r
80867
+ >\r
80868
+ <filing-form-group\r
80869
+ [isSubmitted]="isSubmitted()"\r
80870
+ [form]="sharesAndProvisions"\r
80871
+ [config]="sharesAndProvincesFields"\r
80872
+ />\r
80873
+ </expandable-card>\r
80874
+ }\r
80875
+ \r
80876
+ @let isOpenIncorporators =\r
80877
+ (incorporatorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r
80878
+ \r
80879
+ @if (incorporatorsArray && incorporatorsArray.length) {\r
80880
+ <expandable-list-card\r
80881
+ [isValid]="sectionValidity['incorporators']"\r
80882
+ [areItemsOpen]="isOpenIncorporators"\r
80883
+ [isStatusIcon]="statusIcon()"\r
80884
+ [config]="incorporatorsCardFieldsMap"\r
80885
+ [configKey]="controls.AffiliationAddressType"\r
80886
+ [formArray]="incorporatorsArray"\r
80887
+ [isSubmitted]="isSubmitted()"\r
80888
+ [title]="groups.Incorporators"\r
80889
+ (visiblyValidChange)="onSectionValidChange('incorporators', $event)"\r
80890
+ />\r
80891
+ } @else {\r
80892
+ <expandable-card [title]="groups.Incorporators">\r
80893
+ <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
80894
+ </expandable-card>\r
80895
+ }\r
80896
+ </div>\r
80897
+ </div>\r
80897
80898
  `, styles: ["/* src/app/components/ontario/incorporation/ontario-incorporation-form/ontario-incorporation-form.component.scss */\n:host {\n display: flex;\n flex-direction: column;\n flex: 1;\n min-height: 0;\n}\n:host .incorporation-form {\n display: flex;\n height: 100%;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n flex: 1;\n overflow: auto;\n min-height: 0;\n}\n:host .incorporation-form-content-subtitle {\n color: var(--filing-modal-color-grey);\n padding-bottom: 8px;\n}\n:host .incorporation-form-subtitle {\n color: #666666;\n}\n:host .incorporation-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-form-item-title {\n color: var(--filing-modal-color-dark-blue);\n}\n/*# sourceMappingURL=ontario-incorporation-form.component.css.map */\n"] }]
80898
80899
  }], () => [], null);
80899
80900
  })();
@@ -80999,36 +81000,36 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
80999
81000
  (() => {
81000
81001
  (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(OntarioIncorporationDeltaFormComponent, [{
81001
81002
  type: Component,
81002
- args: [{ standalone: true, selector: "ontario-incorporation-delta-form", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButton, TranslatePipe, OntarioIncorporationFormComponent], template: `<div class="incorporation-delta-form">
81003
- <ontario-incorporation-form
81004
- class="incorporation-delta-form-content"
81005
- [form]="form()"
81006
- [task]="task()"
81007
- [errors]="combinedErrors()"
81008
- [isNote]="isNote()"
81009
- [isSubmitted]="submitted()"
81010
- [statusIcon]="true"
81011
- (visiblyValidChange)="onVisiblyValidChange($event)"
81012
- />
81013
-
81014
- <div class="incorporation-delta-form-actions">
81015
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
81016
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
81017
- </button>
81018
- <button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>
81019
- <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>
81020
- </button>
81021
- <button
81022
- class="submit"
81023
- color="primary"
81024
- mat-flat-button
81025
- [disabled]="actionsDisabled()"
81026
- (click)="onValidate()"
81027
- >
81028
- <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>
81029
- </button>
81030
- </div>
81031
- </div>
81003
+ args: [{ standalone: true, selector: "ontario-incorporation-delta-form", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButton, TranslatePipe, OntarioIncorporationFormComponent], template: `<div class="incorporation-delta-form">\r
81004
+ <ontario-incorporation-form\r
81005
+ class="incorporation-delta-form-content"\r
81006
+ [form]="form()"\r
81007
+ [task]="task()"\r
81008
+ [errors]="combinedErrors()"\r
81009
+ [isNote]="isNote()"\r
81010
+ [isSubmitted]="submitted()"\r
81011
+ [statusIcon]="true"\r
81012
+ (visiblyValidChange)="onVisiblyValidChange($event)"\r
81013
+ />\r
81014
+ \r
81015
+ <div class="incorporation-delta-form-actions">\r
81016
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
81017
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
81018
+ </button>\r
81019
+ <button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>\r
81020
+ <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
81021
+ </button>\r
81022
+ <button\r
81023
+ class="submit"\r
81024
+ color="primary"\r
81025
+ mat-flat-button\r
81026
+ [disabled]="actionsDisabled()"\r
81027
+ (click)="onValidate()"\r
81028
+ >\r
81029
+ <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
81030
+ </button>\r
81031
+ </div>\r
81032
+ </div>\r
81032
81033
  `, styles: ["/* src/app/components/ontario/incorporation/steps/delta/ontario-incorporation-delta-form.component.scss */\n:host .incorporation-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-delta-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .incorporation-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-delta-form-actions button {\n margin: 0;\n}\n:host .incorporation-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=ontario-incorporation-delta-form.component.css.map */\n"] }]
81033
81034
  }], null, null);
81034
81035
  })();
@@ -81105,29 +81106,29 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
81105
81106
  MatButton,
81106
81107
  TranslatePipe,
81107
81108
  OntarioIncorporationFormComponent
81108
- ], template: `<div class="incorporation-preview-form">
81109
- <ontario-incorporation-form
81110
- class="incorporation-preview-form-content"
81111
- [form]="form()"
81112
- [task]="task()"
81113
- [statusIcon]="false"
81114
- />
81115
-
81116
- <div class="incorporation-preview-form-actions">
81117
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
81118
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
81119
- </button>
81120
- <button
81121
- class="submit"
81122
- color="primary"
81123
- mat-flat-button
81124
- [disabled]="actionsDisabled()"
81125
- (click)="next.emit()"
81126
- >
81127
- <span class="body-1-semibold">{{ 'File' | translate }}</span>
81128
- </button>
81129
- </div>
81130
- </div>
81109
+ ], template: `<div class="incorporation-preview-form">\r
81110
+ <ontario-incorporation-form\r
81111
+ class="incorporation-preview-form-content"\r
81112
+ [form]="form()"\r
81113
+ [task]="task()"\r
81114
+ [statusIcon]="false"\r
81115
+ />\r
81116
+ \r
81117
+ <div class="incorporation-preview-form-actions">\r
81118
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
81119
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
81120
+ </button>\r
81121
+ <button\r
81122
+ class="submit"\r
81123
+ color="primary"\r
81124
+ mat-flat-button\r
81125
+ [disabled]="actionsDisabled()"\r
81126
+ (click)="next.emit()"\r
81127
+ >\r
81128
+ <span class="body-1-semibold">{{ 'File' | translate }}</span>\r
81129
+ </button>\r
81130
+ </div>\r
81131
+ </div>\r
81131
81132
  `, styles: ["/* src/app/components/ontario/incorporation/steps/preview/ontario-incorporation-preview-form.component.scss */\n:host .incorporation-preview-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-preview-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-preview-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-preview-form-errors {\n padding: 0 16px;\n}\n:host .incorporation-preview-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-preview-form-actions button {\n margin: 0;\n}\n/*# sourceMappingURL=ontario-incorporation-preview-form.component.css.map */\n"] }]
81132
81133
  }], null, null);
81133
81134
  })();
@@ -81864,154 +81865,154 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
81864
81865
  ExpandableCardComponent,
81865
81866
  ExpandableListCardComponent,
81866
81867
  TranslatePipe
81867
- ], template: `<div class="ontario-update-maintain-form">
81868
- @if (isNote()) {
81869
- <alert
81870
- [type]="alertType.Info"
81871
- title="Entity changed"
81872
- content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
81873
- />
81874
- }
81875
-
81876
- @if (errors().length) {
81877
- <alert
81878
- title="The following issues need to be resolved before proceeding:"
81879
- [content]="errors()"
81880
- />
81881
- }
81882
-
81883
- <div class="ontario-update-maintain-form-content">
81884
- <!-- ===== GENERAL INFO ===== -->
81885
- @let generalInfoForm = getFormGroup(groups.General);
81886
- @if (generalInfoForm) {
81887
- <expandable-card
81888
- [title]="groups.General"
81889
- [isStatusIcon]="!readonly()"
81890
- >
81891
- <filing-form-group
81892
- [isSubmitted]="isSubmitted()"
81893
- [prevData]="prevData()?.corporationInfo"
81894
- [form]="generalInfoForm"
81895
- [config]="generalCardFields"
81896
- [label]="groups.General"
81897
- (visiblyValidChange)="onSectionValidChange('generalInfo', $event)"
81898
- />
81899
- </expandable-card>
81900
- }
81901
-
81902
- <!-- =====REGISTERED OFFICE ADDRESS===== -->
81903
- @let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress);
81904
- @if (registeredOfficeAddress) {
81905
- <expandable-card
81906
- [isStatusIcon]="!readonly()"
81907
- [isValid]="sectionValidity['registeredOffice']"
81908
- [title]="groups.RegisteredOfficeAddress"
81909
- >
81910
- <filing-form-group
81911
- [prevData]="prevData()?.corporationInfo"
81912
- [isSubmitted]="isSubmitted()"
81913
- [form]="registeredOfficeAddress"
81914
- [config]="
81915
- addressFieldsMap[
81916
- registeredOfficeAddress.get(controls.AffiliationAddressType)
81917
- ?.value
81918
- ]
81919
- "
81920
- (visiblyValidChange)="
81921
- onSectionValidChange('registeredOffice', $event)
81922
- "
81923
- />
81924
- </expandable-card>
81925
- }
81926
-
81927
- @let directorsArray = getFormArray(groups.Directors);
81928
- @if (directorsArray && directorsArray.length) {
81929
- @let isOpen =
81930
- (directorsArray?.length ?? 0) <= initiallyOpenCardsCount;
81931
- <expandable-list-card
81932
- [prevData]="prevData()?.persons"
81933
- [isSubmitted]="isSubmitted()"
81934
- [isValid]="sectionValidity['directors']"
81935
- [areItemsOpen]="isOpen"
81936
- [isStatusIcon]="!readonly()"
81937
- [config]="directorsFieldsMap"
81938
- [configKey]="controls.AffiliationAddressType"
81939
- [formArray]="directorsArray"
81940
- [title]="groups.Directors"
81941
- (visiblyValidChange)="onSectionValidChange('directors', $event)"
81942
- />
81943
- } @else {
81944
- <expandable-card [title]="groups.Directors">
81945
- <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>
81946
- </expandable-card>
81947
- }
81948
-
81949
- @let officersArray = getFormArray(groups.Officers);
81950
-
81951
-
81952
- @if (officersArray && officersArray.length) {
81953
- @let isOpen =
81954
- (officersArray?.length ?? 0) <= initiallyOpenCardsCount;
81955
-
81956
- <expandable-list-card
81957
- [prevData]="prevData()?.persons"
81958
- [isSubmitted]="isSubmitted()"
81959
- [areItemsOpen]="isOpen"
81960
- [isStatusIcon]="!readonly()"
81961
- [config]="officersFieldsMap"
81962
- [configKey]="controls.AffiliationAddressType"
81963
- [formArray]="officersArray"
81964
- [title]="groups.Officers"
81965
- [isValid]="sectionValidity['officers']"
81966
- (visiblyValidChange)="onSectionValidChange('officers', $event)"
81967
- />
81968
- } @else {
81969
- <expandable-card [title]="groups.Officers">
81970
- <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>
81971
- </expandable-card>
81972
- }
81973
-
81974
- @let certifiedBy = getFormGroup(groups.CertifiedBy);
81975
- <expandable-card
81976
- [isStatusIcon]="!readonly()"
81977
- [isValid]="certifiedBy ? sectionValidity['certifiedBy'] : true"
81978
- [title]="groups.CertifiedBy"
81979
- >
81980
- @if (certifiedBy) {
81981
- <filing-form-group
81982
- [prevData]="prevData()?.corporationInfo"
81983
- [isSubmitted]="isSubmitted()"
81984
- [form]="certifiedBy"
81985
- [config]="
81986
- certifiedByFieldsMap[
81987
- certifiedBy.get(controls.AffiliationAddressType)?.value
81988
- ]
81989
- "
81990
- (visiblyValidChange)="onSectionValidChange('certifiedBy', $event)"
81991
- />
81992
- } @else {
81993
- <h2 class="body-1-regular">{{ 'Not specified' | translate }}</h2>
81994
- }
81995
-
81996
- </expandable-card>
81997
-
81998
- @let contact = getFormGroup(groups.Contact);
81999
- @if (contact) {
82000
- <expandable-card
82001
- [isStatusIcon]="!readonly()"
82002
- [isValid]="sectionValidity['contact']"
82003
- [title]="groups.Contact"
82004
- >
82005
- <filing-form-group
82006
- [isSubmitted]="isSubmitted()"
82007
- [form]="contact"
82008
- [config]="contactsFields"
82009
- (visiblyValidChange)="onSectionValidChange('contact', $event)"
82010
- />
82011
- </expandable-card>
82012
- }
82013
- </div>
82014
- </div>
81868
+ ], template: `<div class="ontario-update-maintain-form">\r
81869
+ @if (isNote()) {\r
81870
+ <alert\r
81871
+ [type]="alertType.Info"\r
81872
+ title="Entity changed"\r
81873
+ content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
81874
+ />\r
81875
+ }\r
81876
+ \r
81877
+ @if (errors().length) {\r
81878
+ <alert\r
81879
+ title="The following issues need to be resolved before proceeding:"\r
81880
+ [content]="errors()"\r
81881
+ />\r
81882
+ }\r
81883
+ \r
81884
+ <div class="ontario-update-maintain-form-content">\r
81885
+ <!-- ===== GENERAL INFO ===== -->\r
81886
+ @let generalInfoForm = getFormGroup(groups.General);\r
81887
+ @if (generalInfoForm) {\r
81888
+ <expandable-card\r
81889
+ [title]="groups.General"\r
81890
+ [isStatusIcon]="!readonly()"\r
81891
+ >\r
81892
+ <filing-form-group\r
81893
+ [isSubmitted]="isSubmitted()"\r
81894
+ [prevData]="prevData()?.corporationInfo"\r
81895
+ [form]="generalInfoForm"\r
81896
+ [config]="generalCardFields"\r
81897
+ [label]="groups.General"\r
81898
+ (visiblyValidChange)="onSectionValidChange('generalInfo', $event)"\r
81899
+ />\r
81900
+ </expandable-card>\r
81901
+ }\r
81902
+ \r
81903
+ <!-- =====REGISTERED OFFICE ADDRESS===== -->\r
81904
+ @let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress);\r
81905
+ @if (registeredOfficeAddress) {\r
81906
+ <expandable-card\r
81907
+ [isStatusIcon]="!readonly()"\r
81908
+ [isValid]="sectionValidity['registeredOffice']"\r
81909
+ [title]="groups.RegisteredOfficeAddress"\r
81910
+ >\r
81911
+ <filing-form-group\r
81912
+ [prevData]="prevData()?.corporationInfo"\r
81913
+ [isSubmitted]="isSubmitted()"\r
81914
+ [form]="registeredOfficeAddress"\r
81915
+ [config]="\r
81916
+ addressFieldsMap[\r
81917
+ registeredOfficeAddress.get(controls.AffiliationAddressType)\r
81918
+ ?.value\r
81919
+ ]\r
81920
+ "\r
81921
+ (visiblyValidChange)="\r
81922
+ onSectionValidChange('registeredOffice', $event)\r
81923
+ "\r
81924
+ />\r
81925
+ </expandable-card>\r
81926
+ }\r
81927
+ \r
81928
+ @let directorsArray = getFormArray(groups.Directors);\r
81929
+ @if (directorsArray && directorsArray.length) {\r
81930
+ @let isOpen =\r
81931
+ (directorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r
81932
+ <expandable-list-card\r
81933
+ [prevData]="prevData()?.persons"\r
81934
+ [isSubmitted]="isSubmitted()"\r
81935
+ [isValid]="sectionValidity['directors']"\r
81936
+ [areItemsOpen]="isOpen"\r
81937
+ [isStatusIcon]="!readonly()"\r
81938
+ [config]="directorsFieldsMap"\r
81939
+ [configKey]="controls.AffiliationAddressType"\r
81940
+ [formArray]="directorsArray"\r
81941
+ [title]="groups.Directors"\r
81942
+ (visiblyValidChange)="onSectionValidChange('directors', $event)"\r
81943
+ />\r
81944
+ } @else {\r
81945
+ <expandable-card [title]="groups.Directors">\r
81946
+ <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
81947
+ </expandable-card>\r
81948
+ }\r
81949
+ \r
81950
+ @let officersArray = getFormArray(groups.Officers);\r
81951
+ \r
81952
+ \r
81953
+ @if (officersArray && officersArray.length) {\r
81954
+ @let isOpen =\r
81955
+ (officersArray?.length ?? 0) <= initiallyOpenCardsCount;\r
81956
+ \r
81957
+ <expandable-list-card\r
81958
+ [prevData]="prevData()?.persons"\r
81959
+ [isSubmitted]="isSubmitted()"\r
81960
+ [areItemsOpen]="isOpen"\r
81961
+ [isStatusIcon]="!readonly()"\r
81962
+ [config]="officersFieldsMap"\r
81963
+ [configKey]="controls.AffiliationAddressType"\r
81964
+ [formArray]="officersArray"\r
81965
+ [title]="groups.Officers"\r
81966
+ [isValid]="sectionValidity['officers']"\r
81967
+ (visiblyValidChange)="onSectionValidChange('officers', $event)"\r
81968
+ />\r
81969
+ } @else {\r
81970
+ <expandable-card [title]="groups.Officers">\r
81971
+ <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
81972
+ </expandable-card>\r
81973
+ }\r
81974
+ \r
81975
+ @let certifiedBy = getFormGroup(groups.CertifiedBy);\r
81976
+ <expandable-card\r
81977
+ [isStatusIcon]="!readonly()"\r
81978
+ [isValid]="certifiedBy ? sectionValidity['certifiedBy'] : true"\r
81979
+ [title]="groups.CertifiedBy"\r
81980
+ >\r
81981
+ @if (certifiedBy) {\r
81982
+ <filing-form-group\r
81983
+ [prevData]="prevData()?.corporationInfo"\r
81984
+ [isSubmitted]="isSubmitted()"\r
81985
+ [form]="certifiedBy"\r
81986
+ [config]="\r
81987
+ certifiedByFieldsMap[\r
81988
+ certifiedBy.get(controls.AffiliationAddressType)?.value\r
81989
+ ]\r
81990
+ "\r
81991
+ (visiblyValidChange)="onSectionValidChange('certifiedBy', $event)"\r
81992
+ />\r
81993
+ } @else {\r
81994
+ <h2 class="body-1-regular">{{ 'Not specified' | translate }}</h2>\r
81995
+ }\r
81996
+ \r
81997
+ </expandable-card>\r
81998
+ \r
81999
+ @let contact = getFormGroup(groups.Contact);\r
82000
+ @if (contact) {\r
82001
+ <expandable-card\r
82002
+ [isStatusIcon]="!readonly()"\r
82003
+ [isValid]="sectionValidity['contact']"\r
82004
+ [title]="groups.Contact"\r
82005
+ >\r
82006
+ <filing-form-group\r
82007
+ [isSubmitted]="isSubmitted()"\r
82008
+ [form]="contact"\r
82009
+ [config]="contactsFields"\r
82010
+ (visiblyValidChange)="onSectionValidChange('contact', $event)"\r
82011
+ />\r
82012
+ </expandable-card>\r
82013
+ }\r
82014
+ </div>\r
82015
+ </div>\r
82015
82016
  `, styles: ["/* src/app/components/ontario/update-maintain/update-maintain-form/update-maintain-form.component.scss */\n:host .ontario-update-maintain-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n overflow-y: auto;\n}\n:host .ontario-update-maintain-form-content {\n display: flex;\n flex-direction: column;\n gap: 24px;\n}\n:host .ontario-update-maintain-form-section {\n display: flex;\n flex-direction: column;\n gap: 12px;\n}\n:host .ontario-update-maintain-form-section-title {\n font-size: 14px;\n font-weight: 600;\n color: var(--filing-modal-color-dark-blue, #1a2e5a);\n margin: 0;\n padding-bottom: 8px;\n border-bottom: 1px solid var(--color-border, #e0e0e0);\n}\n:host .ontario-update-maintain-form-principal {\n padding: 12px 0;\n border-bottom: 1px solid var(--color-border, #e0e0e0);\n}\n:host .ontario-update-maintain-form-principal:last-child {\n border-bottom: none;\n}\n/*# sourceMappingURL=update-maintain-form.component.css.map */\n"] }]
82016
82017
  }], () => [], null);
82017
82018
  })();
@@ -82126,38 +82127,38 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
82126
82127
  MatButton,
82127
82128
  TranslatePipe,
82128
82129
  OntarioUpdateMaintainFormComponent
82129
- ], template: `<div class="ontario-update-maintain-delta-form">
82130
- <ontario-update-maintain-form
82131
- class="ontario-update-maintain-delta-form-content"
82132
- [form]="form()"
82133
- [task]="task()"
82134
- [errors]="combinedErrors()"
82135
- [isNote]="isNote()"
82136
- [isSubmitted]="submitted()"
82137
- [readonly]="false"
82138
- [prevData]="prevData()"
82139
- (visiblyValidChange)="onVisiblyValidChange($event)"
82140
- />
82141
-
82142
- <div class="ontario-update-maintain-delta-form-actions">
82143
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
82144
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
82145
- </button>
82146
- <button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>
82147
- <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>
82148
- </button>
82149
- <button
82150
- class="submit"
82151
- color="primary"
82152
- mat-flat-button
82153
- [disabled]="actionsDisabled()"
82154
- (click)="onValidate()"
82155
- >
82156
- <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>
82157
- </button>
82158
- </div>
82159
- </div>
82160
-
82130
+ ], template: `<div class="ontario-update-maintain-delta-form">\r
82131
+ <ontario-update-maintain-form\r
82132
+ class="ontario-update-maintain-delta-form-content"\r
82133
+ [form]="form()"\r
82134
+ [task]="task()"\r
82135
+ [errors]="combinedErrors()"\r
82136
+ [isNote]="isNote()"\r
82137
+ [isSubmitted]="submitted()"\r
82138
+ [readonly]="false"\r
82139
+ [prevData]="prevData()"\r
82140
+ (visiblyValidChange)="onVisiblyValidChange($event)"\r
82141
+ />\r
82142
+ \r
82143
+ <div class="ontario-update-maintain-delta-form-actions">\r
82144
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
82145
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
82146
+ </button>\r
82147
+ <button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>\r
82148
+ <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
82149
+ </button>\r
82150
+ <button\r
82151
+ class="submit"\r
82152
+ color="primary"\r
82153
+ mat-flat-button\r
82154
+ [disabled]="actionsDisabled()"\r
82155
+ (click)="onValidate()"\r
82156
+ >\r
82157
+ <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
82158
+ </button>\r
82159
+ </div>\r
82160
+ </div>\r
82161
+ \r
82161
82162
  `, styles: ["/* src/app/components/ontario/update-maintain/steps/delta/update-maintain-delta-form.component.scss */\n:host .ontario-update-maintain-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .ontario-update-maintain-delta-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .ontario-update-maintain-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .ontario-update-maintain-delta-form-actions button {\n margin: 0;\n}\n:host .ontario-update-maintain-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-delta-form.component.css.map */\n"] }]
82162
82163
  }], null, null);
82163
82164
  })();
@@ -82232,32 +82233,32 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
82232
82233
  MatButton,
82233
82234
  OntarioUpdateMaintainFormComponent,
82234
82235
  TranslatePipe
82235
- ], template: `<div class="ontario-update-maintain-preview-form">
82236
- <ontario-update-maintain-form
82237
- class="ontario-update-maintain-preview-form-content"
82238
- [form]="form()"
82239
- [task]="task()"
82240
- [errors]="errors()"
82241
- [isSubmitted]="false"
82242
- [readonly]="false"
82243
- />
82244
-
82245
- <div class="ontario-update-maintain-preview-form-actions">
82246
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
82247
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
82248
- </button>
82249
- <button
82250
- class="submit"
82251
- color="primary"
82252
- mat-flat-button
82253
- [disabled]="actionsDisabled()"
82254
- (click)="file.emit()"
82255
- >
82256
- <span class="body-1-semibold">{{ 'File' | translate }}</span>
82257
- </button>
82258
- </div>
82259
- </div>
82260
-
82236
+ ], template: `<div class="ontario-update-maintain-preview-form">\r
82237
+ <ontario-update-maintain-form\r
82238
+ class="ontario-update-maintain-preview-form-content"\r
82239
+ [form]="form()"\r
82240
+ [task]="task()"\r
82241
+ [errors]="errors()"\r
82242
+ [isSubmitted]="false"\r
82243
+ [readonly]="false"\r
82244
+ />\r
82245
+ \r
82246
+ <div class="ontario-update-maintain-preview-form-actions">\r
82247
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
82248
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
82249
+ </button>\r
82250
+ <button\r
82251
+ class="submit"\r
82252
+ color="primary"\r
82253
+ mat-flat-button\r
82254
+ [disabled]="actionsDisabled()"\r
82255
+ (click)="file.emit()"\r
82256
+ >\r
82257
+ <span class="body-1-semibold">{{ 'File' | translate }}</span>\r
82258
+ </button>\r
82259
+ </div>\r
82260
+ </div>\r
82261
+ \r
82261
82262
  `, styles: ["/* src/app/components/ontario/update-maintain/steps/preview/update-maintain-preview-form.component.scss */\n:host .ontario-update-maintain-preview-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .ontario-update-maintain-preview-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .ontario-update-maintain-preview-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .ontario-update-maintain-preview-form-actions button {\n margin: 0;\n}\n:host .ontario-update-maintain-preview-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-preview-form.component.css.map */\n"] }]
82262
82263
  }], null, null);
82263
82264
  })();
@@ -82662,6 +82663,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
82662
82663
  data.legalOpinion = {
82663
82664
  wasLegalOpinionObtained: corpDetails?.[FormationFormControls.wasLegalOpinionObtained] ?? false,
82664
82665
  lawyerSigning: legalOpinionData?.[FormationFormControls.LawyerSigningOpinion] ?? null,
82666
+ lawFirm: legalOpinionData?.[FormationFormControls.LawFirm] ?? null,
82665
82667
  address: this.mapFormationAddressDelta(legalOpinionData)
82666
82668
  };
82667
82669
  }
@@ -82727,7 +82729,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
82727
82729
  OntarioIncorporationDeltaFormComponent,
82728
82730
  OntarioIncorporationPreviewFormComponent,
82729
82731
  TermsAndConditionsComponent
82730
- ], template: '@let taskData = this.task();\n\n@if (isFormationTask(taskData)) {\n @if (activeStep() === steps.Validate) {\n <ontario-incorporation-delta-form\n [task]="taskData"\n [errors]="errors()"\n [isNote]="isNote()"\n [actionsDisabled]="actionsDisabled()"\n [form]="deltaForm()"\n (validate)="onFormationValidate()"\n (close)="onClose()"\n (save)="onFormationSave()"\n />\n }\n\n @if (activeStep() === steps.FilingPreview) {\n <ontario-incorporation-preview-form\n [task]="taskData"\n [form]="previewForm()"\n [actionsDisabled]="actionsDisabled()"\n (next)="nextStep.emit()"\n (close)="close.emit()"\n />\n }\n\n @if (activeStep() === steps.TermsAndConditions) {\n <terms-and-conditions\n (prev)="prevStep.emit()"\n (close)="close.emit()"\n (confirm)="onFormationSubmit($event)"\n />\n }\n}\n\n@if (isInitialReturnTask(task())) {\n @if (activeStep() === steps.Validate) {\n <ontario-update-maintain-delta-form\n [task]="$any(task())"\n [form]="deltaForm()"\n [actionsDisabled]="actionsDisabled()"\n [prevData]="prevData()"\n [errors]="errors()"\n [isNote]="isNote()"\n (validate)="onInitialReturnValidate()"\n (close)="onClose()"\n (save)="onInitialReturnSave()"\n />\n }\n\n @if (activeStep() === steps.FilingPreview) {\n <ontario-update-maintain-preview-form\n [task]="$any(task())"\n [form]="previewForm()"\n [actionsDisabled]="actionsDisabled()"\n [errors]="errors()"\n (close)="close.emit()"\n (file)="nextStep.emit()"\n />\n }\n\n @if (activeStep() === steps.TermsAndConditions) {\n <terms-and-conditions\n (prev)="prevStep.emit()"\n (close)="close.emit()"\n (confirm)="onIrSubmit($event)"\n />\n }\n}\n', styles: ["/* src/app/components/ontario/ontario.component.scss */\n:host {\n display: contents;\n}\n/*# sourceMappingURL=ontario.component.css.map */\n"] }]
82732
+ ], template: '@let taskData = this.task();\r\n\r\n@if (isFormationTask(taskData)) {\r\n @if (activeStep() === steps.Validate) {\r\n <ontario-incorporation-delta-form\r\n [task]="taskData"\r\n [errors]="errors()"\r\n [isNote]="isNote()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [form]="deltaForm()"\r\n (validate)="onFormationValidate()"\r\n (close)="onClose()"\r\n (save)="onFormationSave()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.FilingPreview) {\r\n <ontario-incorporation-preview-form\r\n [task]="taskData"\r\n [form]="previewForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n (next)="nextStep.emit()"\r\n (close)="close.emit()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.TermsAndConditions) {\r\n <terms-and-conditions\r\n (prev)="prevStep.emit()"\r\n (close)="close.emit()"\r\n (confirm)="onFormationSubmit($event)"\r\n />\r\n }\r\n}\r\n\r\n@if (isInitialReturnTask(task())) {\r\n @if (activeStep() === steps.Validate) {\r\n <ontario-update-maintain-delta-form\r\n [task]="$any(task())"\r\n [form]="deltaForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [prevData]="prevData()"\r\n [errors]="errors()"\r\n [isNote]="isNote()"\r\n (validate)="onInitialReturnValidate()"\r\n (close)="onClose()"\r\n (save)="onInitialReturnSave()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.FilingPreview) {\r\n <ontario-update-maintain-preview-form\r\n [task]="$any(task())"\r\n [form]="previewForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [errors]="errors()"\r\n (close)="close.emit()"\r\n (file)="nextStep.emit()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.TermsAndConditions) {\r\n <terms-and-conditions\r\n (prev)="prevStep.emit()"\r\n (close)="close.emit()"\r\n (confirm)="onIrSubmit($event)"\r\n />\r\n }\r\n}\r\n', styles: ["/* src/app/components/ontario/ontario.component.scss */\n:host {\n display: contents;\n}\n/*# sourceMappingURL=ontario.component.css.map */\n"] }]
82731
82733
  }], () => [], null);
82732
82734
  })();
82733
82735
  (() => {
@@ -83832,39 +83834,39 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
83832
83834
  (() => {
83833
83835
  (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(SelectModalComponent, [{
83834
83836
  type: Component,
83835
- args: [{ standalone: true, selector: "add-documents-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, MatDialogModule, MatIconModule, TranslatePipe, MatCheckbox], template: `<div class="add-documents-modal">
83836
- <div class="add-documents-modal-header">
83837
- <h2 class="grey">{{ dialogData.title | translate }}</h2>
83838
- </div>
83839
-
83840
- <div class="add-documents-modal-list">
83841
- @for (doc of dialogData.items; track doc) {
83842
- <div (click)="toggleDocument(doc)" class="add-documents-modal-list-item">
83843
- <mat-checkbox [checked]="isSelected(doc)"/>
83844
- <span class="body-1-regular">{{ doc }}</span>
83845
- </div>
83846
- }
83847
- </div>
83848
-
83849
- <div class="add-documents-modal-actions">
83850
- <button
83851
- mat-stroked-button mat-button
83852
- (click)="closeModal()"
83853
- >
83854
- <span class="body-1-semibold">{{ 'Cancel' | translate }}</span>
83855
- </button>
83856
-
83857
- <button
83858
- class="submit"
83859
- mat-flat-button
83860
- [disabled]="!hasSelection()"
83861
- (click)="addSelectedDocuments()"
83862
- >
83863
- <span class="body-1-semibold">{{ dialogData.submitButton | translate }}</span>
83864
- </button>
83865
- </div>
83866
-
83867
- </div>
83837
+ args: [{ standalone: true, selector: "add-documents-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, MatDialogModule, MatIconModule, TranslatePipe, MatCheckbox], template: `<div class="add-documents-modal">\r
83838
+ <div class="add-documents-modal-header">\r
83839
+ <h2 class="grey">{{ dialogData.title | translate }}</h2>\r
83840
+ </div>\r
83841
+ \r
83842
+ <div class="add-documents-modal-list">\r
83843
+ @for (doc of dialogData.items; track doc) {\r
83844
+ <div (click)="toggleDocument(doc)" class="add-documents-modal-list-item">\r
83845
+ <mat-checkbox [checked]="isSelected(doc)"/>\r
83846
+ <span class="body-1-regular">{{ doc }}</span>\r
83847
+ </div>\r
83848
+ }\r
83849
+ </div>\r
83850
+ \r
83851
+ <div class="add-documents-modal-actions">\r
83852
+ <button\r
83853
+ mat-stroked-button mat-button\r
83854
+ (click)="closeModal()"\r
83855
+ >\r
83856
+ <span class="body-1-semibold">{{ 'Cancel' | translate }}</span>\r
83857
+ </button>\r
83858
+ \r
83859
+ <button\r
83860
+ class="submit"\r
83861
+ mat-flat-button\r
83862
+ [disabled]="!hasSelection()"\r
83863
+ (click)="addSelectedDocuments()"\r
83864
+ >\r
83865
+ <span class="body-1-semibold">{{ dialogData.submitButton | translate }}</span>\r
83866
+ </button>\r
83867
+ </div>\r
83868
+ \r
83869
+ </div>\r
83868
83870
  `, styles: ['/* src/app/components/federal/components/select-modal/select-modal.component.scss */\n.filling {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\n.filling {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n.filing .mat-primary .mat-pseudo-checkbox-checked,\n.filing .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n.filing .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n:host {\n --filing-modal-color-grey: #444444;\n --filing-modal-color-dark-blue: #485673;\n --filing-modal-color-grey-mid: #A0A0A0;\n --filing-modal-color-light-blue: #3778E4;\n --filing-modal-color-black: #444444;\n}\nmat-icon {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1 {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2 {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3 {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 20px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\n.body-1-regular {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0;\n}\n.black {\n color: var(--filing-modal-color-black);\n}\n.grey {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue {\n color: var(--filing-modal-color-light-blue);\n}\n:host ::ng-deep {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n:host ::ng-deep .mat-primary .mat-pseudo-checkbox-checked,\n:host ::ng-deep .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n:host ::ng-deep .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n:host ::ng-deep .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n:host ::ng-deep .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n:host ::ng-deep .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n:host ::ng-deep .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n:host ::ng-deep .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n:host ::ng-deep .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n:host .add-documents-modal {\n padding: 24px 0;\n border: 2px solid #ededed;\n border-radius: 16px;\n width: 100%;\n background: white;\n}\n:host .add-documents-modal-header {\n padding: 0 24px;\n}\n:host .add-documents-modal-list {\n display: flex;\n flex-direction: column;\n max-height: 300px;\n overflow: auto;\n padding: 24px;\n}\n:host .add-documents-modal-list-item {\n display: flex;\n align-items: center;\n font-size: 18px;\n cursor: pointer;\n width: 100%;\n -webkit-user-select: none;\n user-select: none;\n}\n:host .add-documents-modal-actions {\n display: flex;\n justify-content: flex-end;\n gap: 8px;\n padding-right: 16px;\n}\n::ng-deep .mat-mdc-dialog-surface {\n background: transparent !important;\n padding: 2px;\n min-width: 660px;\n}\n/*# sourceMappingURL=select-modal.component.css.map */\n'] }]
83869
83871
  }], null, null);
83870
83872
  })();
@@ -84009,34 +84011,34 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
84009
84011
  MatButton,
84010
84012
  TranslatePipe,
84011
84013
  MatIcon
84012
- ], template: `<div class="documents">
84013
- <span class="body-1-regular">{{ 'Supporting documents relevant to the proposed name, including consent letters' | translate }}</span>
84014
-
84015
- @let selectedDocuments = this.selectedDocuments();
84016
- @if (selectedDocuments.length) {
84017
- <div class="documents-list">
84018
- @for(document of selectedDocuments; track document) {
84019
- <div class="documents-list-item body-1-regular">
84020
- <mat-icon class="documents-list-item-document">description_outline</mat-icon>
84021
- <span class="body-1-regular">{{document}}</span>
84022
-
84023
- @if (!readonly()) {
84024
- <div class="documents-list-icon-wrapper" (click)="removeDocument.emit(document)">
84025
- <mat-icon class="documents-list-item-close">close</mat-icon>
84026
- </div>
84027
- }
84028
-
84029
- </div>
84030
- }
84031
- </div>
84032
- }
84033
-
84034
- @if (!readonly()) {
84035
- <button mat-stroked-button class="outlined" (click)="onAddDocuments()">
84036
- <span class="body-1-semibold">{{ 'Add Supporting Documents' | translate }}</span>
84037
- </button>
84038
- }
84039
- </div>
84014
+ ], template: `<div class="documents">\r
84015
+ <span class="body-1-regular">{{ 'Supporting documents relevant to the proposed name, including consent letters' | translate }}</span>\r
84016
+ \r
84017
+ @let selectedDocuments = this.selectedDocuments();\r
84018
+ @if (selectedDocuments.length) {\r
84019
+ <div class="documents-list">\r
84020
+ @for(document of selectedDocuments; track document) {\r
84021
+ <div class="documents-list-item body-1-regular">\r
84022
+ <mat-icon class="documents-list-item-document">description_outline</mat-icon>\r
84023
+ <span class="body-1-regular">{{document}}</span>\r
84024
+ \r
84025
+ @if (!readonly()) {\r
84026
+ <div class="documents-list-icon-wrapper" (click)="removeDocument.emit(document)">\r
84027
+ <mat-icon class="documents-list-item-close">close</mat-icon>\r
84028
+ </div>\r
84029
+ }\r
84030
+ \r
84031
+ </div>\r
84032
+ }\r
84033
+ </div>\r
84034
+ }\r
84035
+ \r
84036
+ @if (!readonly()) {\r
84037
+ <button mat-stroked-button class="outlined" (click)="onAddDocuments()">\r
84038
+ <span class="body-1-semibold">{{ 'Add Supporting Documents' | translate }}</span>\r
84039
+ </button>\r
84040
+ }\r
84041
+ </div>\r
84040
84042
  `, styles: ["/* src/app/components/federal/components/documents/documents.component.scss */\n:host .documents {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 16px;\n}\n:host .documents-list {\n display: flex;\n flex-direction: column;\n gap: 4px;\n padding-left: 16px;\n}\n:host .documents-list-item {\n display: flex;\n align-items: center;\n gap: 8px;\n color: var(--filing-modal-color-grey);\n}\n:host .documents-list-item mat-icon {\n color: var(--filing-modal-color-grey);\n display: flex;\n align-items: center;\n}\n:host .documents-list-item-document {\n font-size: 24px;\n}\n:host .documents-list-item-close {\n font-size: 18px;\n height: 18px;\n width: 18px;\n line-height: 18px;\n}\n:host .documents-list-icon-wrapper {\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-left: 32px;\n}\n/*# sourceMappingURL=documents.component.css.map */\n"] }]
84041
84043
  }], null, null);
84042
84044
  })();
@@ -84862,246 +84864,246 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
84862
84864
  TranslatePipe,
84863
84865
  ReactiveFormsModule,
84864
84866
  DatePipe
84865
- ], template: `<div class="incorporation-form">
84866
- @if (isNote()) {
84867
- <alert
84868
- [type]="alertType.Info"
84869
- title="Entity changed"
84870
- content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
84871
- />
84872
- }
84873
-
84874
- @if (errors().length) {
84875
- <alert
84876
- title="The following issues need to be resolved before proceeding:"
84877
- [content]="errors()"
84878
- />
84879
- }
84880
-
84881
- <div class="incorporation-form-content">
84882
- @let corporateName = getFormGroup(groups.CorporateName);
84883
-
84884
- @if (corporateName) {
84885
- <expandable-card
84886
- [isValid]="sectionValidity['corporateName']"
84887
- [isStatusIcon]="isStatusIcon()"
84888
- [title]="groups.CorporateName"
84889
- >
84890
- <div class="incorporation-form-item">
84891
- <filing-form-group
84892
- [isSubmitted]="isSubmitted()"
84893
- [form]="corporateName"
84894
- [config]="incorporationFields"
84895
- (visiblyValidChange)="onSectionValidChange('corporateName', $event)"
84896
- />
84897
-
84898
- @if (isNonPreapprovedNameType() || selectedDocuments().length) {
84899
- <documents
84900
- [documents]="documents()"
84901
- [readonly]="isReadonly()"
84902
- [selectedDocuments]="selectedDocuments()"
84903
- (addDocuments)="addDocuments.emit($event)"
84904
- (removeDocument)="removeDocument.emit($event)"
84905
- />
84906
- }
84907
- </div>
84908
- </expandable-card>
84909
- }
84910
-
84911
- @let articlesOfIncorporation = getFormGroup(groups.ArticlesOfIncorporation);
84912
-
84913
- @if (articlesOfIncorporation) {
84914
- <expandable-card
84915
- [isValid]="sectionValidity['articles']"
84916
- [isStatusIcon]="isStatusIcon()"
84917
- [title]="groups.ArticlesOfIncorporation"
84918
- >
84919
- <div class="incorporation-form-item">
84920
- <span
84921
- class="body-1-regular black"
84922
- [innerHTML]="directorsSubtitle()"
84923
- ></span>
84924
-
84925
- <filing-form-group
84926
- [isSubmitted]="isSubmitted()"
84927
- [form]="articlesOfIncorporation"
84928
- [config]="articlesOfIncorporationFields"
84929
- (visiblyValidChange)="onSectionValidChange('articles', $event)"
84930
- />
84931
- <div>
84932
- <span class="body-1-semibold dark-blue">{{ 'Incorporators' | translate }}</span>
84933
-
84934
- <ul class="incorporators-list">
84935
- @for (
84936
- incorporator of task()?._ext?._incorporators;
84937
- track incorporator.affiliationID
84938
- ) {
84939
- <li class="body-1-regular grey">
84940
- {{ getIncorporatorName(incorporator) }}
84941
- </li>
84942
- }
84943
- </ul>
84944
- </div>
84945
-
84946
- <span class="body-1-regular grey"
84947
- >{{ 'Effective Date' | translate }}:
84948
- {{
84949
- task()?._ext?._future_filing_date
84950
- ? (task()!._ext!._future_filing_date | date: "yyyy-MM-dd")
84951
- : (today | date: "yyyy-MM-dd")
84952
- }}</span
84953
- >
84954
- </div>
84955
- </expandable-card>
84956
- }
84957
-
84958
- @let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress);
84959
-
84960
- @if (registeredOfficeAddress) {
84961
- <expandable-card
84962
- [isValid]="sectionValidity['registeredOffice']"
84963
- [isStatusIcon]="isStatusIcon()"
84964
- [title]="groups.RegisteredOfficeAddress"
84965
- >
84966
- <div class="incorporation-form-item">
84967
- <filing-form-group
84968
- [isSubmitted]="isSubmitted()"
84969
- [form]="registeredOfficeAddress"
84970
- [config]="registeredOfficeAddressFields"
84971
- (visiblyValidChange)="
84972
- onSectionValidChange('registeredOffice', $event)
84973
- "
84974
- />
84975
- </div>
84976
- </expandable-card>
84977
- }
84978
-
84979
- @let directorsArray = getFormArray(groups.Directors);
84980
-
84981
- @if (directorsArray && directorsArray.length) {
84982
- @let directorsFormArray = getFormArray(groups.Directors);
84983
- <expandable-list-card
84984
- [isValid]="sectionValidity['directors']"
84985
- [isSubmitted]="isSubmitted()"
84986
- [areItemsOpen]="directorsArray.length <= initiallyOpenCardsCount"
84987
- [fields]="directorsFields"
84988
- [formArray]="directorsFormArray"
84989
- [title]="groups.Directors"
84990
- (visiblyValidChange)="onSectionValidChange('directors', $event)"
84991
- />
84992
- } @else {
84993
- <expandable-card [title]="groups.Directors">
84994
- <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>
84995
- </expandable-card>
84996
- }
84997
-
84998
- @let significantControl = getFormGroup(groups.SignificantControl);
84999
- @if (significantControl) {
85000
- @let individualsWithSignificantControlArray =
85001
- getFormArray(groups.IndividualsWithSignificantControl);
85002
-
85003
- @if (individualsWithSignificantControlArray) {
85004
- <expandable-list-card
85005
- [areItemsOpen]="
85006
- individualsWithSignificantControlArray.length <=
85007
- initiallyOpenCardsCount
85008
- "
85009
- [isValid]="
85010
- sectionValidity['isc'] &&
85011
- sectionValidity['significantControl']
85012
- "
85013
- (remove)="onRemoveIndividualWithSignificantForm($event)"
85014
- [removable]="!isReadonly()"
85015
- [isSubmitted]="isSubmitted()"
85016
- [isStatusIcon]="isStatusIcon()"
85017
- [fields]="individualsWithSignificantControlFields"
85018
- [formArray]="individualsWithSignificantControlArray"
85019
- [title]="groups.IndividualsWithSignificantControl"
85020
- (visiblyValidChange)="onSectionValidChange('isc', $event)"
85021
- >
85022
- @if (
85023
- !isReadonly() && isAddIndividualWithSignificantControlAvailable()
85024
- ) {
85025
- <button
85026
- [disabled]="isAddIndividualWithSignificantControlDisabled()"
85027
- slot="subtitle"
85028
- mat-stroked-button
85029
- mat-button
85030
- (click)="addIndividualWithSignificantControl()"
85031
- >
85032
- <span class="body-1-semibold">{{
85033
- "Add Individuals With Significant Control" | translate
85034
- }}</span>
85035
- </button>
85036
- }
85037
-
85038
- <div class="significant-control" slot="header-content">
85039
- <filing-form-group
85040
- [isSubmitted]="isSubmitted()"
85041
- [form]="significantControl"
85042
- [config]="significantControlFields"
85043
- (visiblyValidChange)="
85044
- onSectionValidChange('significantControl', $event)
85045
- "
85046
- />
85047
- </div>
85048
- </expandable-list-card>
85049
- }
85050
- }
85051
-
85052
- @let inviteDirectorToBeFullAccessManager =
85053
- getFormGroup(groups.InviteDirectorToBeFullAccessManager);
85054
- @if (inviteDirectorToBeFullAccessManager) {
85055
- <expandable-card
85056
- [isValid]="sectionValidity['inviteDirector']"
85057
- [title]="groups.InviteDirectorToBeFullAccessManager"
85058
- >
85059
- <filing-form-group
85060
- [isSubmitted]="isSubmitted()"
85061
- [form]="inviteDirectorToBeFullAccessManager"
85062
- [config]="federalFormationFormInviteDirectorsToBeManagersControl"
85063
- (visiblyValidChange)="onSectionValidChange('inviteDirector', $event)"
85064
- />
85065
- </expandable-card>
85066
- }
85067
-
85068
- @let extraProvincialLicensesArray =
85069
- getFormArray(groups.ExtraProvincialRegistrations);
85070
- @let extraProvincialLicensesControlsLength =
85071
- extraProvincialLicensesArray?.length;
85072
-
85073
- @if (extraProvincialLicensesControlsLength) {
85074
- <expandable-list-card
85075
- [areItemsOpen]="extraProvincialLicensesControlsLength === 1"
85076
- [isValid]="sectionValidity['epl']"
85077
- [isSubmitted]="isSubmitted()"
85078
- [isStatusIcon]="isStatusIcon()"
85079
- [fields]="extraProvincialLicensesFields"
85080
- [formArray]="extraProvincialLicensesArray"
85081
- [title]="groups.ExtraProvincialRegistrations"
85082
- (visiblyValidChange)="onSectionValidChange('epl', $event)"
85083
- />
85084
- }
85085
-
85086
- @let contactForm = getFormGroup(groups.Contact);
85087
- @if (contactForm) {
85088
- <expandable-card
85089
- [isStatusIcon]="isStatusIcon()"
85090
- [isValid]="sectionValidity['contact']"
85091
- [title]="groups.Contact"
85092
- >
85093
- <filing-form-group
85094
- [isSubmitted]="isSubmitted()"
85095
- [form]="contactForm"
85096
- [config]="contactControl"
85097
- (visiblyValidChange)="onSectionValidChange('contact', $event)"
85098
- />
85099
- </expandable-card>
85100
- }
85101
-
85102
- <ng-content></ng-content>
85103
- </div>
85104
- </div>
84867
+ ], template: `<div class="incorporation-form">\r
84868
+ @if (isNote()) {\r
84869
+ <alert\r
84870
+ [type]="alertType.Info"\r
84871
+ title="Entity changed"\r
84872
+ content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
84873
+ />\r
84874
+ }\r
84875
+ \r
84876
+ @if (errors().length) {\r
84877
+ <alert\r
84878
+ title="The following issues need to be resolved before proceeding:"\r
84879
+ [content]="errors()"\r
84880
+ />\r
84881
+ }\r
84882
+ \r
84883
+ <div class="incorporation-form-content">\r
84884
+ @let corporateName = getFormGroup(groups.CorporateName);\r
84885
+ \r
84886
+ @if (corporateName) {\r
84887
+ <expandable-card\r
84888
+ [isValid]="sectionValidity['corporateName']"\r
84889
+ [isStatusIcon]="isStatusIcon()"\r
84890
+ [title]="groups.CorporateName"\r
84891
+ >\r
84892
+ <div class="incorporation-form-item">\r
84893
+ <filing-form-group\r
84894
+ [isSubmitted]="isSubmitted()"\r
84895
+ [form]="corporateName"\r
84896
+ [config]="incorporationFields"\r
84897
+ (visiblyValidChange)="onSectionValidChange('corporateName', $event)"\r
84898
+ />\r
84899
+ \r
84900
+ @if (isNonPreapprovedNameType() || selectedDocuments().length) {\r
84901
+ <documents\r
84902
+ [documents]="documents()"\r
84903
+ [readonly]="isReadonly()"\r
84904
+ [selectedDocuments]="selectedDocuments()"\r
84905
+ (addDocuments)="addDocuments.emit($event)"\r
84906
+ (removeDocument)="removeDocument.emit($event)"\r
84907
+ />\r
84908
+ }\r
84909
+ </div>\r
84910
+ </expandable-card>\r
84911
+ }\r
84912
+ \r
84913
+ @let articlesOfIncorporation = getFormGroup(groups.ArticlesOfIncorporation);\r
84914
+ \r
84915
+ @if (articlesOfIncorporation) {\r
84916
+ <expandable-card\r
84917
+ [isValid]="sectionValidity['articles']"\r
84918
+ [isStatusIcon]="isStatusIcon()"\r
84919
+ [title]="groups.ArticlesOfIncorporation"\r
84920
+ >\r
84921
+ <div class="incorporation-form-item">\r
84922
+ <span\r
84923
+ class="body-1-regular black"\r
84924
+ [innerHTML]="directorsSubtitle()"\r
84925
+ ></span>\r
84926
+ \r
84927
+ <filing-form-group\r
84928
+ [isSubmitted]="isSubmitted()"\r
84929
+ [form]="articlesOfIncorporation"\r
84930
+ [config]="articlesOfIncorporationFields"\r
84931
+ (visiblyValidChange)="onSectionValidChange('articles', $event)"\r
84932
+ />\r
84933
+ <div>\r
84934
+ <span class="body-1-semibold dark-blue">{{ 'Incorporators' | translate }}</span>\r
84935
+ \r
84936
+ <ul class="incorporators-list">\r
84937
+ @for (\r
84938
+ incorporator of task()?._ext?._incorporators;\r
84939
+ track incorporator.affiliationID\r
84940
+ ) {\r
84941
+ <li class="body-1-regular grey">\r
84942
+ {{ getIncorporatorName(incorporator) }}\r
84943
+ </li>\r
84944
+ }\r
84945
+ </ul>\r
84946
+ </div>\r
84947
+ \r
84948
+ <span class="body-1-regular grey"\r
84949
+ >{{ 'Effective Date' | translate }}:\r
84950
+ {{\r
84951
+ task()?._ext?._future_filing_date\r
84952
+ ? (task()!._ext!._future_filing_date | date: "yyyy-MM-dd")\r
84953
+ : (today | date: "yyyy-MM-dd")\r
84954
+ }}</span\r
84955
+ >\r
84956
+ </div>\r
84957
+ </expandable-card>\r
84958
+ }\r
84959
+ \r
84960
+ @let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress);\r
84961
+ \r
84962
+ @if (registeredOfficeAddress) {\r
84963
+ <expandable-card\r
84964
+ [isValid]="sectionValidity['registeredOffice']"\r
84965
+ [isStatusIcon]="isStatusIcon()"\r
84966
+ [title]="groups.RegisteredOfficeAddress"\r
84967
+ >\r
84968
+ <div class="incorporation-form-item">\r
84969
+ <filing-form-group\r
84970
+ [isSubmitted]="isSubmitted()"\r
84971
+ [form]="registeredOfficeAddress"\r
84972
+ [config]="registeredOfficeAddressFields"\r
84973
+ (visiblyValidChange)="\r
84974
+ onSectionValidChange('registeredOffice', $event)\r
84975
+ "\r
84976
+ />\r
84977
+ </div>\r
84978
+ </expandable-card>\r
84979
+ }\r
84980
+ \r
84981
+ @let directorsArray = getFormArray(groups.Directors);\r
84982
+ \r
84983
+ @if (directorsArray && directorsArray.length) {\r
84984
+ @let directorsFormArray = getFormArray(groups.Directors);\r
84985
+ <expandable-list-card\r
84986
+ [isValid]="sectionValidity['directors']"\r
84987
+ [isSubmitted]="isSubmitted()"\r
84988
+ [areItemsOpen]="directorsArray.length <= initiallyOpenCardsCount"\r
84989
+ [fields]="directorsFields"\r
84990
+ [formArray]="directorsFormArray"\r
84991
+ [title]="groups.Directors"\r
84992
+ (visiblyValidChange)="onSectionValidChange('directors', $event)"\r
84993
+ />\r
84994
+ } @else {\r
84995
+ <expandable-card [title]="groups.Directors">\r
84996
+ <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
84997
+ </expandable-card>\r
84998
+ }\r
84999
+ \r
85000
+ @let significantControl = getFormGroup(groups.SignificantControl);\r
85001
+ @if (significantControl) {\r
85002
+ @let individualsWithSignificantControlArray =\r
85003
+ getFormArray(groups.IndividualsWithSignificantControl);\r
85004
+ \r
85005
+ @if (individualsWithSignificantControlArray) {\r
85006
+ <expandable-list-card\r
85007
+ [areItemsOpen]="\r
85008
+ individualsWithSignificantControlArray.length <=\r
85009
+ initiallyOpenCardsCount\r
85010
+ "\r
85011
+ [isValid]="\r
85012
+ sectionValidity['isc'] &&\r
85013
+ sectionValidity['significantControl']\r
85014
+ "\r
85015
+ (remove)="onRemoveIndividualWithSignificantForm($event)"\r
85016
+ [removable]="!isReadonly()"\r
85017
+ [isSubmitted]="isSubmitted()"\r
85018
+ [isStatusIcon]="isStatusIcon()"\r
85019
+ [fields]="individualsWithSignificantControlFields"\r
85020
+ [formArray]="individualsWithSignificantControlArray"\r
85021
+ [title]="groups.IndividualsWithSignificantControl"\r
85022
+ (visiblyValidChange)="onSectionValidChange('isc', $event)"\r
85023
+ >\r
85024
+ @if (\r
85025
+ !isReadonly() && isAddIndividualWithSignificantControlAvailable()\r
85026
+ ) {\r
85027
+ <button\r
85028
+ [disabled]="isAddIndividualWithSignificantControlDisabled()"\r
85029
+ slot="subtitle"\r
85030
+ mat-stroked-button\r
85031
+ mat-button\r
85032
+ (click)="addIndividualWithSignificantControl()"\r
85033
+ >\r
85034
+ <span class="body-1-semibold">{{\r
85035
+ "Add Individuals With Significant Control" | translate\r
85036
+ }}</span>\r
85037
+ </button>\r
85038
+ }\r
85039
+ \r
85040
+ <div class="significant-control" slot="header-content">\r
85041
+ <filing-form-group\r
85042
+ [isSubmitted]="isSubmitted()"\r
85043
+ [form]="significantControl"\r
85044
+ [config]="significantControlFields"\r
85045
+ (visiblyValidChange)="\r
85046
+ onSectionValidChange('significantControl', $event)\r
85047
+ "\r
85048
+ />\r
85049
+ </div>\r
85050
+ </expandable-list-card>\r
85051
+ }\r
85052
+ }\r
85053
+ \r
85054
+ @let inviteDirectorToBeFullAccessManager =\r
85055
+ getFormGroup(groups.InviteDirectorToBeFullAccessManager);\r
85056
+ @if (inviteDirectorToBeFullAccessManager) {\r
85057
+ <expandable-card\r
85058
+ [isValid]="sectionValidity['inviteDirector']"\r
85059
+ [title]="groups.InviteDirectorToBeFullAccessManager"\r
85060
+ >\r
85061
+ <filing-form-group\r
85062
+ [isSubmitted]="isSubmitted()"\r
85063
+ [form]="inviteDirectorToBeFullAccessManager"\r
85064
+ [config]="federalFormationFormInviteDirectorsToBeManagersControl"\r
85065
+ (visiblyValidChange)="onSectionValidChange('inviteDirector', $event)"\r
85066
+ />\r
85067
+ </expandable-card>\r
85068
+ }\r
85069
+ \r
85070
+ @let extraProvincialLicensesArray =\r
85071
+ getFormArray(groups.ExtraProvincialRegistrations);\r
85072
+ @let extraProvincialLicensesControlsLength =\r
85073
+ extraProvincialLicensesArray?.length;\r
85074
+ \r
85075
+ @if (extraProvincialLicensesControlsLength) {\r
85076
+ <expandable-list-card\r
85077
+ [areItemsOpen]="extraProvincialLicensesControlsLength === 1"\r
85078
+ [isValid]="sectionValidity['epl']"\r
85079
+ [isSubmitted]="isSubmitted()"\r
85080
+ [isStatusIcon]="isStatusIcon()"\r
85081
+ [fields]="extraProvincialLicensesFields"\r
85082
+ [formArray]="extraProvincialLicensesArray"\r
85083
+ [title]="groups.ExtraProvincialRegistrations"\r
85084
+ (visiblyValidChange)="onSectionValidChange('epl', $event)"\r
85085
+ />\r
85086
+ }\r
85087
+ \r
85088
+ @let contactForm = getFormGroup(groups.Contact);\r
85089
+ @if (contactForm) {\r
85090
+ <expandable-card\r
85091
+ [isStatusIcon]="isStatusIcon()"\r
85092
+ [isValid]="sectionValidity['contact']"\r
85093
+ [title]="groups.Contact"\r
85094
+ >\r
85095
+ <filing-form-group\r
85096
+ [isSubmitted]="isSubmitted()"\r
85097
+ [form]="contactForm"\r
85098
+ [config]="contactControl"\r
85099
+ (visiblyValidChange)="onSectionValidChange('contact', $event)"\r
85100
+ />\r
85101
+ </expandable-card>\r
85102
+ }\r
85103
+ \r
85104
+ <ng-content></ng-content>\r
85105
+ </div>\r
85106
+ </div>\r
85105
85107
  `, styles: ["/* src/app/components/federal/incorporation/federal-incorporation-form/federal-incorporation-form.component.scss */\n:host {\n display: flex;\n flex-direction: column;\n flex: 1;\n min-height: 0;\n}\n:host .incorporation-form {\n display: flex;\n height: 100%;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n flex: 1;\n overflow: auto;\n min-height: 0;\n}\n:host .incorporation-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-form .significant-control {\n padding: 0 16px;\n}\n:host .incorporators-list {\n margin: 8px;\n padding-inline-start: 25px;\n}\n/*# sourceMappingURL=federal-incorporation-form.component.css.map */\n"] }]
85106
85108
  }], () => [], null);
85107
85109
  })();
@@ -85223,39 +85225,39 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
85223
85225
  MatButton,
85224
85226
  TranslatePipe,
85225
85227
  FederalIncorporationFormComponent
85226
- ], template: `<div class="incorporation-delta-form">
85227
- <federal-incorporation-form
85228
- class="incorporation-delta-form-content"
85229
- [form]="form()"
85230
- [task]="task()"
85231
- [errors]="combinedErrors()"
85232
- [isNote]="isNote()"
85233
- [isSubmitted]="submitted()"
85234
- [documents]="documents()"
85235
- [selectedDocuments]="selectedDocuments()"
85236
- (addDocuments)="addDocuments.emit($event)"
85237
- (removeDocument)="removeDocument.emit($event)"
85238
- (visiblyValidChange)="onVisiblyValidChange($event)"
85239
- />
85240
-
85241
- <div class="incorporation-delta-form-actions">
85242
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
85243
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
85244
- </button>
85245
- <button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>
85246
- <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>
85247
- </button>
85248
- <button
85249
- class="submit"
85250
- color="primary"
85251
- mat-flat-button
85252
- [disabled]="actionsDisabled()"
85253
- (click)="onValidate()"
85254
- >
85255
- <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>
85256
- </button>
85257
- </div>
85258
- </div>
85228
+ ], template: `<div class="incorporation-delta-form">\r
85229
+ <federal-incorporation-form\r
85230
+ class="incorporation-delta-form-content"\r
85231
+ [form]="form()"\r
85232
+ [task]="task()"\r
85233
+ [errors]="combinedErrors()"\r
85234
+ [isNote]="isNote()"\r
85235
+ [isSubmitted]="submitted()"\r
85236
+ [documents]="documents()"\r
85237
+ [selectedDocuments]="selectedDocuments()"\r
85238
+ (addDocuments)="addDocuments.emit($event)"\r
85239
+ (removeDocument)="removeDocument.emit($event)"\r
85240
+ (visiblyValidChange)="onVisiblyValidChange($event)"\r
85241
+ />\r
85242
+ \r
85243
+ <div class="incorporation-delta-form-actions">\r
85244
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
85245
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
85246
+ </button>\r
85247
+ <button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>\r
85248
+ <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
85249
+ </button>\r
85250
+ <button\r
85251
+ class="submit"\r
85252
+ color="primary"\r
85253
+ mat-flat-button\r
85254
+ [disabled]="actionsDisabled()"\r
85255
+ (click)="onValidate()"\r
85256
+ >\r
85257
+ <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
85258
+ </button>\r
85259
+ </div>\r
85260
+ </div>\r
85259
85261
  `, styles: ["/* src/app/components/federal/incorporation/steps/delta/federal-incorporation-delta-form.component.scss */\n:host .incorporation-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-delta-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n overflow: auto;\n}\n:host .incorporation-delta-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-delta-form-errors {\n padding: 0 16px;\n}\n:host .incorporation-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-delta-form-actions button {\n margin: 0;\n}\n:host .incorporation-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=federal-incorporation-delta-form.component.css.map */\n"] }]
85260
85262
  }], null, null);
85261
85263
  })();
@@ -85374,39 +85376,39 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
85374
85376
  FederalIncorporationFormComponent,
85375
85377
  ExpandableCardComponent,
85376
85378
  FilingFormGroupComponent
85377
- ], template: `<div class="incorporation-delta-form">
85378
- <federal-incorporation-form
85379
- class="incorporation-delta-form-content"
85380
- [form]="form()"
85381
- [task]="task()"
85382
- [errors]="errors()"
85383
- [selectedDocuments]="selectedDocuments()"
85384
- [isStatusIcon]="false"
85385
- [isReadonly]="true"
85386
- >
85387
- @let signatoryInformation = getFormGroup(groups.Signatory);
85388
-
85389
- <expandable-card [isExpandable]="false">
85390
- <filing-form-group [isSubmitted]="true" [form]="signatoryInformation" [config]="signatoryFields"/>
85391
- </expandable-card>
85392
-
85393
- </federal-incorporation-form>
85394
-
85395
- <div class="incorporation-delta-form-actions">
85396
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
85397
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
85398
- </button>
85399
- <button
85400
- class="submit"
85401
- color="primary"
85402
- mat-flat-button
85403
- [disabled]="actionsDisabled() || !getFormGroup(groups.Signatory).get(controls.Signatory)?.value"
85404
- (click)="file.emit()"
85405
- >
85406
- <span class="body-1-semibold">{{ 'File' | translate }}</span>
85407
- </button>
85408
- </div>
85409
- </div>
85379
+ ], template: `<div class="incorporation-delta-form">\r
85380
+ <federal-incorporation-form\r
85381
+ class="incorporation-delta-form-content"\r
85382
+ [form]="form()"\r
85383
+ [task]="task()"\r
85384
+ [errors]="errors()"\r
85385
+ [selectedDocuments]="selectedDocuments()"\r
85386
+ [isStatusIcon]="false"\r
85387
+ [isReadonly]="true"\r
85388
+ >\r
85389
+ @let signatoryInformation = getFormGroup(groups.Signatory);\r
85390
+ \r
85391
+ <expandable-card [isExpandable]="false">\r
85392
+ <filing-form-group [isSubmitted]="true" [form]="signatoryInformation" [config]="signatoryFields"/>\r
85393
+ </expandable-card>\r
85394
+ \r
85395
+ </federal-incorporation-form>\r
85396
+ \r
85397
+ <div class="incorporation-delta-form-actions">\r
85398
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
85399
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
85400
+ </button>\r
85401
+ <button\r
85402
+ class="submit"\r
85403
+ color="primary"\r
85404
+ mat-flat-button\r
85405
+ [disabled]="actionsDisabled() || !getFormGroup(groups.Signatory).get(controls.Signatory)?.value"\r
85406
+ (click)="file.emit()"\r
85407
+ >\r
85408
+ <span class="body-1-semibold">{{ 'File' | translate }}</span>\r
85409
+ </button>\r
85410
+ </div>\r
85411
+ </div>\r
85410
85412
  `, styles: ["/* src/app/components/federal/incorporation/steps/preview/federal-incorporation-preview-form.component.scss */\n:host .incorporation-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-delta-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n overflow: auto;\n}\n:host .incorporation-delta-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-delta-form-errors {\n padding: 0 16px;\n}\n:host .incorporation-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-delta-form-actions button {\n margin: 0;\n}\n/*# sourceMappingURL=federal-incorporation-preview-form.component.css.map */\n"] }]
85411
85413
  }], () => [], null);
85412
85414
  })();
@@ -86038,139 +86040,139 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
86038
86040
  ReactiveFormsModule,
86039
86041
  MatButton,
86040
86042
  TranslatePipe
86041
- ], template: `<div class="federal-update-maintain-form">
86042
- @if (isNote()) {
86043
- <alert
86044
- [type]="alertType.Info"
86045
- title="Entity changed"
86046
- content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
86047
- />
86048
- }
86049
-
86050
- @if (errors().length) {
86051
- <alert
86052
- title="The following issues need to be resolved before proceeding:"
86053
- [content]="errors()"
86054
- />
86055
- }
86056
-
86057
- <div class="federal-update-maintain-form-content">
86058
- @let corporationDetails = getFormGroup(groups.CorporationDetails);
86059
- @if (corporationDetails) {
86060
- <expandable-card
86061
- [isValid]="sectionValidity['corporationDetails']"
86062
- [title]="groups.CorporationDetails"
86063
- >
86064
- <filing-form-group
86065
- [isSubmitted]="isSubmitted()"
86066
- [form]="corporationDetails"
86067
- [config]="corporationDetailsFields"
86068
- (visiblyValidChange)="
86069
- onSectionValidChange('corporationDetails', $event)
86070
- "
86071
- />
86072
- </expandable-card>
86073
- }
86074
-
86075
- @let directorsArray = getFormArray(groups.Directors);
86076
- @if (directorsArray && directorsArray.length) {
86077
- <expandable-list-card
86078
- [isValid]="sectionValidity['directors']"
86079
- [isSubmitted]="isSubmitted()"
86080
- [fields]="directorsFields"
86081
- [formArray]="directorsArray"
86082
- [labelKey]="controls.AffiliationName"
86083
- [title]="groups.Directors"
86084
- (visiblyValidChange)="onSectionValidChange('directors', $event)"
86085
- />
86086
- } @else {
86087
- <expandable-card [title]="groups.Directors">
86088
- <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>
86089
- </expandable-card>
86090
- }
86091
-
86092
- @let annualReturn = getFormGroup(groups.AnnualReturn);
86093
- @if (annualReturn) {
86094
- <expandable-card
86095
- [isValid]="sectionValidity['annualReturn']"
86096
- [title]="groups.AnnualReturn"
86097
- >
86098
- <filing-form-group
86099
- [isSubmitted]="isSubmitted()"
86100
- [form]="annualReturn"
86101
- [config]="annualReturnFields"
86102
- (visiblyValidChange)="onSectionValidChange('annualReturn', $event)"
86103
- />
86104
- </expandable-card>
86105
- }
86106
-
86107
- @let significantControl = getFormGroup(groups.SignificantControl);
86108
- @if (significantControl) {
86109
- @let individualsArray =
86110
- getFormArray(groups.IndividualsWithSignificantControl);
86111
- @if (individualsArray) {
86112
- <expandable-list-card
86113
- [areItemsOpen]="isIndividualsWithSignificantControlOpen()"
86114
- [isValid]="
86115
- sectionValidity['isc'] && sectionValidity['significantControl']
86116
- "
86117
- [isSubmitted]="isSubmitted()"
86118
- [isStatusIcon]="true"
86119
- [removable]="!readonly()"
86120
- [fields]="individualsWithSignificantControlFields()"
86121
- [formArray]="individualsArray"
86122
- [labelKey]="controls.AffiliationName"
86123
- [title]="groups.IndividualsWithSignificantControl"
86124
- (remove)="onRemoveIndividualWithSignificantForm($event)"
86125
- (visiblyValidChange)="onSectionValidChange('isc', $event)"
86126
- >
86127
- @if (
86128
- !readonly() && isAddIndividualWithSignificantControlAvailable()
86129
- ) {
86130
- <button
86131
- [disabled]="isAddIndividualWithSignificantControlDisabled()"
86132
- slot="subtitle"
86133
- mat-stroked-button
86134
- mat-button
86135
- (click)="addIndividualWithSignificantControl()"
86136
- >
86137
- <span class="body-1-semibold">{{
86138
- "Add Individuals With Significant Control" | translate
86139
- }}</span>
86140
- </button>
86141
- }
86142
-
86143
- <div class="card-header-content" slot="header-content">
86144
- <filing-form-group
86145
- [isSubmitted]="isSubmitted()"
86146
- [form]="significantControl"
86147
- [config]="significantControlFields"
86148
- (visiblyValidChange)="
86149
- onSectionValidChange('significantControl', $event)
86150
- "
86151
- />
86152
- </div>
86153
- </expandable-list-card>
86154
- }
86155
- }
86156
-
86157
- @let contact = getFormGroup(groups.Contact);
86158
- @if (contact) {
86159
- <expandable-card
86160
- [isStatusIcon]="!readonly()"
86161
- [isValid]="sectionValidity['contact']"
86162
- [title]="groups.Contact"
86163
- >
86164
- <filing-form-group
86165
- [isSubmitted]="isSubmitted()"
86166
- [form]="contact"
86167
- [config]="contactControl()"
86168
- (visiblyValidChange)="onSectionValidChange('contact', $event)"
86169
- />
86170
- </expandable-card>
86171
- }
86172
- </div>
86173
- </div>
86043
+ ], template: `<div class="federal-update-maintain-form">\r
86044
+ @if (isNote()) {\r
86045
+ <alert\r
86046
+ [type]="alertType.Info"\r
86047
+ title="Entity changed"\r
86048
+ content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
86049
+ />\r
86050
+ }\r
86051
+ \r
86052
+ @if (errors().length) {\r
86053
+ <alert\r
86054
+ title="The following issues need to be resolved before proceeding:"\r
86055
+ [content]="errors()"\r
86056
+ />\r
86057
+ }\r
86058
+ \r
86059
+ <div class="federal-update-maintain-form-content">\r
86060
+ @let corporationDetails = getFormGroup(groups.CorporationDetails);\r
86061
+ @if (corporationDetails) {\r
86062
+ <expandable-card\r
86063
+ [isValid]="sectionValidity['corporationDetails']"\r
86064
+ [title]="groups.CorporationDetails"\r
86065
+ >\r
86066
+ <filing-form-group\r
86067
+ [isSubmitted]="isSubmitted()"\r
86068
+ [form]="corporationDetails"\r
86069
+ [config]="corporationDetailsFields"\r
86070
+ (visiblyValidChange)="\r
86071
+ onSectionValidChange('corporationDetails', $event)\r
86072
+ "\r
86073
+ />\r
86074
+ </expandable-card>\r
86075
+ }\r
86076
+ \r
86077
+ @let directorsArray = getFormArray(groups.Directors);\r
86078
+ @if (directorsArray && directorsArray.length) {\r
86079
+ <expandable-list-card\r
86080
+ [isValid]="sectionValidity['directors']"\r
86081
+ [isSubmitted]="isSubmitted()"\r
86082
+ [fields]="directorsFields"\r
86083
+ [formArray]="directorsArray"\r
86084
+ [labelKey]="controls.AffiliationName"\r
86085
+ [title]="groups.Directors"\r
86086
+ (visiblyValidChange)="onSectionValidChange('directors', $event)"\r
86087
+ />\r
86088
+ } @else {\r
86089
+ <expandable-card [title]="groups.Directors">\r
86090
+ <h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
86091
+ </expandable-card>\r
86092
+ }\r
86093
+ \r
86094
+ @let annualReturn = getFormGroup(groups.AnnualReturn);\r
86095
+ @if (annualReturn) {\r
86096
+ <expandable-card\r
86097
+ [isValid]="sectionValidity['annualReturn']"\r
86098
+ [title]="groups.AnnualReturn"\r
86099
+ >\r
86100
+ <filing-form-group\r
86101
+ [isSubmitted]="isSubmitted()"\r
86102
+ [form]="annualReturn"\r
86103
+ [config]="annualReturnFields"\r
86104
+ (visiblyValidChange)="onSectionValidChange('annualReturn', $event)"\r
86105
+ />\r
86106
+ </expandable-card>\r
86107
+ }\r
86108
+ \r
86109
+ @let significantControl = getFormGroup(groups.SignificantControl);\r
86110
+ @if (significantControl) {\r
86111
+ @let individualsArray =\r
86112
+ getFormArray(groups.IndividualsWithSignificantControl);\r
86113
+ @if (individualsArray) {\r
86114
+ <expandable-list-card\r
86115
+ [areItemsOpen]="isIndividualsWithSignificantControlOpen()"\r
86116
+ [isValid]="\r
86117
+ sectionValidity['isc'] && sectionValidity['significantControl']\r
86118
+ "\r
86119
+ [isSubmitted]="isSubmitted()"\r
86120
+ [isStatusIcon]="true"\r
86121
+ [removable]="!readonly()"\r
86122
+ [fields]="individualsWithSignificantControlFields()"\r
86123
+ [formArray]="individualsArray"\r
86124
+ [labelKey]="controls.AffiliationName"\r
86125
+ [title]="groups.IndividualsWithSignificantControl"\r
86126
+ (remove)="onRemoveIndividualWithSignificantForm($event)"\r
86127
+ (visiblyValidChange)="onSectionValidChange('isc', $event)"\r
86128
+ >\r
86129
+ @if (\r
86130
+ !readonly() && isAddIndividualWithSignificantControlAvailable()\r
86131
+ ) {\r
86132
+ <button\r
86133
+ [disabled]="isAddIndividualWithSignificantControlDisabled()"\r
86134
+ slot="subtitle"\r
86135
+ mat-stroked-button\r
86136
+ mat-button\r
86137
+ (click)="addIndividualWithSignificantControl()"\r
86138
+ >\r
86139
+ <span class="body-1-semibold">{{\r
86140
+ "Add Individuals With Significant Control" | translate\r
86141
+ }}</span>\r
86142
+ </button>\r
86143
+ }\r
86144
+ \r
86145
+ <div class="card-header-content" slot="header-content">\r
86146
+ <filing-form-group\r
86147
+ [isSubmitted]="isSubmitted()"\r
86148
+ [form]="significantControl"\r
86149
+ [config]="significantControlFields"\r
86150
+ (visiblyValidChange)="\r
86151
+ onSectionValidChange('significantControl', $event)\r
86152
+ "\r
86153
+ />\r
86154
+ </div>\r
86155
+ </expandable-list-card>\r
86156
+ }\r
86157
+ }\r
86158
+ \r
86159
+ @let contact = getFormGroup(groups.Contact);\r
86160
+ @if (contact) {\r
86161
+ <expandable-card\r
86162
+ [isStatusIcon]="!readonly()"\r
86163
+ [isValid]="sectionValidity['contact']"\r
86164
+ [title]="groups.Contact"\r
86165
+ >\r
86166
+ <filing-form-group\r
86167
+ [isSubmitted]="isSubmitted()"\r
86168
+ [form]="contact"\r
86169
+ [config]="contactControl()"\r
86170
+ (visiblyValidChange)="onSectionValidChange('contact', $event)"\r
86171
+ />\r
86172
+ </expandable-card>\r
86173
+ }\r
86174
+ </div>\r
86175
+ </div>\r
86174
86176
  `, styles: ["/* src/app/components/federal/update-maintain/update-maintain-form/update-maintain-form.component.scss */\n:host .federal-update-maintain-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n overflow-y: auto;\n}\n:host .federal-update-maintain-form-content {\n display: flex;\n flex-direction: column;\n gap: 24px;\n}\n:host .card-header-content {\n padding: 0 16px;\n}\n/*# sourceMappingURL=update-maintain-form.component.css.map */\n"] }]
86175
86177
  }], () => [], null);
86176
86178
  })();
@@ -86284,37 +86286,37 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
86284
86286
  MatButton,
86285
86287
  TranslatePipe,
86286
86288
  FederalUpdateMaintainFormComponent
86287
- ], template: `<div class="federal-update-maintain-delta-form">
86288
- <federal-update-maintain-form
86289
- class="federal-update-maintain-delta-form-content"
86290
- [form]="form()"
86291
- [task]="task()"
86292
- [errors]="combinedErrors()"
86293
- [isNote]="isNote()"
86294
- [isSubmitted]="submitted()"
86295
- [readonly]="false"
86296
- (visiblyValidChange)="onVisiblyValidChange($event)"
86297
- />
86298
-
86299
- <div class="federal-update-maintain-delta-form-actions">
86300
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
86301
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
86302
- </button>
86303
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="save.emit()">
86304
- <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>
86305
- </button>
86306
- <button
86307
- class="submit"
86308
- color="primary"
86309
- mat-flat-button
86310
- [disabled]="actionsDisabled()"
86311
- (click)="onValidate()"
86312
- >
86313
- <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>
86314
- </button>
86315
- </div>
86316
- </div>
86317
-
86289
+ ], template: `<div class="federal-update-maintain-delta-form">\r
86290
+ <federal-update-maintain-form\r
86291
+ class="federal-update-maintain-delta-form-content"\r
86292
+ [form]="form()"\r
86293
+ [task]="task()"\r
86294
+ [errors]="combinedErrors()"\r
86295
+ [isNote]="isNote()"\r
86296
+ [isSubmitted]="submitted()"\r
86297
+ [readonly]="false"\r
86298
+ (visiblyValidChange)="onVisiblyValidChange($event)"\r
86299
+ />\r
86300
+ \r
86301
+ <div class="federal-update-maintain-delta-form-actions">\r
86302
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
86303
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
86304
+ </button>\r
86305
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="save.emit()">\r
86306
+ <span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
86307
+ </button>\r
86308
+ <button\r
86309
+ class="submit"\r
86310
+ color="primary"\r
86311
+ mat-flat-button\r
86312
+ [disabled]="actionsDisabled()"\r
86313
+ (click)="onValidate()"\r
86314
+ >\r
86315
+ <span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
86316
+ </button>\r
86317
+ </div>\r
86318
+ </div>\r
86319
+ \r
86318
86320
  `, styles: ["/* src/app/components/federal/update-maintain/steps/delta/update-maintain-delta-form.component.scss */\n:host .federal-update-maintain-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .federal-update-maintain-delta-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .federal-update-maintain-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .federal-update-maintain-delta-form-actions button {\n margin: 0;\n}\n:host .federal-update-maintain-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-delta-form.component.css.map */\n"] }]
86319
86321
  }], null, null);
86320
86322
  })();
@@ -86389,32 +86391,32 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
86389
86391
  MatButton,
86390
86392
  TranslatePipe,
86391
86393
  FederalUpdateMaintainFormComponent
86392
- ], template: `<div class="federal-update-maintain-preview-form">
86393
- <federal-update-maintain-form
86394
- class="federal-update-maintain-preview-form-content"
86395
- [form]="form()"
86396
- [task]="task()"
86397
- [errors]="errors()"
86398
- [isSubmitted]="false"
86399
- [readonly]="true"
86400
- />
86401
-
86402
- <div class="federal-update-maintain-preview-form-actions">
86403
- <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">
86404
- <span class="body-1-semibold">{{ 'Close' | translate }}</span>
86405
- </button>
86406
- <button
86407
- class="submit"
86408
- color="primary"
86409
- mat-flat-button
86410
- [disabled]="actionsDisabled()"
86411
- (click)="file.emit()"
86412
- >
86413
- <span class="body-1-semibold">{{ 'File' | translate }}</span>
86414
- </button>
86415
- </div>
86416
- </div>
86417
-
86394
+ ], template: `<div class="federal-update-maintain-preview-form">\r
86395
+ <federal-update-maintain-form\r
86396
+ class="federal-update-maintain-preview-form-content"\r
86397
+ [form]="form()"\r
86398
+ [task]="task()"\r
86399
+ [errors]="errors()"\r
86400
+ [isSubmitted]="false"\r
86401
+ [readonly]="true"\r
86402
+ />\r
86403
+ \r
86404
+ <div class="federal-update-maintain-preview-form-actions">\r
86405
+ <button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
86406
+ <span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
86407
+ </button>\r
86408
+ <button\r
86409
+ class="submit"\r
86410
+ color="primary"\r
86411
+ mat-flat-button\r
86412
+ [disabled]="actionsDisabled()"\r
86413
+ (click)="file.emit()"\r
86414
+ >\r
86415
+ <span class="body-1-semibold">{{ 'File' | translate }}</span>\r
86416
+ </button>\r
86417
+ </div>\r
86418
+ </div>\r
86419
+ \r
86418
86420
  `, styles: ["/* src/app/components/federal/update-maintain/steps/preview/update-maintain-preview-form.component.scss */\n:host .federal-update-maintain-preview-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .federal-update-maintain-preview-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .federal-update-maintain-preview-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .federal-update-maintain-preview-form-actions button {\n margin: 0;\n}\n:host .federal-update-maintain-preview-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-preview-form.component.css.map */\n"] }]
86419
86421
  }], null, null);
86420
86422
  })();
@@ -86835,7 +86837,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
86835
86837
  FederalIncorporationPreviewFormComponent,
86836
86838
  FederalUpdateMaintainDeltaFormComponent,
86837
86839
  FederalUpdateMaintainPreviewFormComponent
86838
- ], template: '@let currentTask = task();\n\n@if (currentTask) {\n @if (isFormationTask(currentTask)) {\n @if (activeStep() === steps.Validate) {\n <federal-incorporation-delta-form\n [documents]="documents"\n [selectedDocuments]="selectedDocuments()"\n (addDocuments)="onAddDocuments($event)"\n (removeDocument)="onRemoveDocument($event)"\n (close)="onClose()"\n (validate)="onValidate()"\n (save)="onSave()"\n [task]="currentTask"\n [errors]="errors()"\n [actionsDisabled]="actionsDisabled()"\n [isNote]="isNote()"\n [form]="deltaForm()"\n />\n\n } @else if (activeStep() === steps.FilingPreview) {\n <federal-incorporation-preview-form (close)="close.emit()" (file)="onFile()" [task]="currentTask"\n [errors]="errors()"\n [actionsDisabled]="actionsDisabled()" [form]="previewForm()"\n [selectedDocuments]="selectedDocuments()"/>\n }\n }\n\n @if (isUpdateMaintainTask(currentTask)) {\n @if (activeStep() === steps.Validate) {\n <federal-update-maintain-delta-form\n [task]="$any(currentTask)"\n [form]="umDeltaForm()"\n [actionsDisabled]="actionsDisabled()"\n [errors]="errors()"\n [isNote]="isNote()"\n (validate)="onUmValidate()"\n (close)="onClose()"\n (save)="onUmSave()"\n />\n }\n\n @if (activeStep() === steps.FilingPreview) {\n <federal-update-maintain-preview-form\n [task]="$any(currentTask)"\n [form]="umPreviewForm()"\n [actionsDisabled]="actionsDisabled()"\n [errors]="errors()"\n (close)="close.emit()"\n (file)="onUmSubmit()"\n />\n }\n }\n}\n\n\n\n\n\n', styles: ["/* src/app/components/federal/federal.component.scss */\n:host .federal {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n/*# sourceMappingURL=federal.component.css.map */\n"] }]
86840
+ ], template: '@let currentTask = task();\r\n\r\n@if (currentTask) {\r\n @if (isFormationTask(currentTask)) {\r\n @if (activeStep() === steps.Validate) {\r\n <federal-incorporation-delta-form\r\n [documents]="documents"\r\n [selectedDocuments]="selectedDocuments()"\r\n (addDocuments)="onAddDocuments($event)"\r\n (removeDocument)="onRemoveDocument($event)"\r\n (close)="onClose()"\r\n (validate)="onValidate()"\r\n (save)="onSave()"\r\n [task]="currentTask"\r\n [errors]="errors()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [isNote]="isNote()"\r\n [form]="deltaForm()"\r\n />\r\n\r\n } @else if (activeStep() === steps.FilingPreview) {\r\n <federal-incorporation-preview-form (close)="close.emit()" (file)="onFile()" [task]="currentTask"\r\n [errors]="errors()"\r\n [actionsDisabled]="actionsDisabled()" [form]="previewForm()"\r\n [selectedDocuments]="selectedDocuments()"/>\r\n }\r\n }\r\n\r\n @if (isUpdateMaintainTask(currentTask)) {\r\n @if (activeStep() === steps.Validate) {\r\n <federal-update-maintain-delta-form\r\n [task]="$any(currentTask)"\r\n [form]="umDeltaForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [errors]="errors()"\r\n [isNote]="isNote()"\r\n (validate)="onUmValidate()"\r\n (close)="onClose()"\r\n (save)="onUmSave()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.FilingPreview) {\r\n <federal-update-maintain-preview-form\r\n [task]="$any(currentTask)"\r\n [form]="umPreviewForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [errors]="errors()"\r\n (close)="close.emit()"\r\n (file)="onUmSubmit()"\r\n />\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n\r\n\r\n', styles: ["/* src/app/components/federal/federal.component.scss */\n:host .federal {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n/*# sourceMappingURL=federal.component.css.map */\n"] }]
86839
86841
  }], () => [], null);
86840
86842
  })();
86841
86843
  (() => {
@@ -87445,7 +87447,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
87445
87447
  payload.PersonName.FirstName?.toLowerCase() ?? "",
87446
87448
  payload.PersonName.MiddleName?.toLowerCase() ?? "",
87447
87449
  payload.PersonName.LastName?.toLowerCase() ?? "",
87448
- payload.OfficerPositionName?.toLowerCase() ?? ""
87450
+ payload.OfficerPositionName?.toLowerCase() ?? payload.PersonName.Position ?? ""
87449
87451
  ].filter(Boolean).join(" ");
87450
87452
  };
87451
87453
  const populatePersonsMap = (list) => {
@@ -87457,7 +87459,12 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
87457
87459
  continue;
87458
87460
  const email = ("EmailAddress" in payload ? payload.EmailAddress : "") ?? "";
87459
87461
  const ceasedRoles = "CeasedAppointedRoles" in payload && Array.isArray(payload.CeasedAppointedRoles) ? payload.CeasedAppointedRoles.map((role) => `${role.PositionFullName} - ${role.CeasedDate} (Appointed ${role.AppointedDate})`) : void 0;
87460
- personsMap.set(fullName(payload), __spreadProps(__spreadValues({}, deltaData), { email, ceasedRoles }));
87462
+ const name = [
87463
+ toTitleCase(payload.PersonName.FirstName ?? ""),
87464
+ toTitleCase(payload.PersonName.MiddleName ?? ""),
87465
+ toTitleCase(payload.PersonName.LastName ?? "")
87466
+ ].filter(Boolean).join(" ");
87467
+ personsMap.set(fullName(payload), __spreadProps(__spreadValues({}, deltaData), { email, ceasedRoles, position: payload.OfficerPositionName?.toLowerCase() ?? payload.PersonName.Position ?? "", fullName: name }));
87461
87468
  }
87462
87469
  };
87463
87470
  populatePersonsMap(initialAdministrators);
@@ -87469,6 +87476,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
87469
87476
  "src/app/helpers/initial-return-payload.helper.ts"() {
87470
87477
  init_address_utils();
87471
87478
  init_transform_utils();
87479
+ init_common_utils();
87472
87480
  }
87473
87481
  });
87474
87482
 
@@ -88161,11 +88169,23 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
88161
88169
  const certStreetOnly = getAddressComponent(certEntityAddr, "Street Only");
88162
88170
  const { StreetName: certStreetName, StreetType: certStreetType, StreetDirection: certStreetDir } = parseStreetAddress(certStreetOnly);
88163
88171
  const isCanadianCertifierAddress = certifierCountry === "CA";
88172
+ const initialAdministratorForCertifier = initialAdministrators?.find((admin) => {
88173
+ if ((admin.PersonName.FirstName ?? "").toLowerCase() === (cert.firstName ?? "").toLowerCase() && (admin.PersonName.LastName ?? "").toLowerCase() === (cert.lastName ?? "").toLowerCase() && (admin.PersonName.MiddleName ?? "").toLowerCase() === (cert.middleName ?? "").toLowerCase()) {
88174
+ if (cert.type === "Director" && admin.IsDirector) {
88175
+ return admin;
88176
+ }
88177
+ if (cert.type !== "Director" && (cert.officerTitle === admin.OfficerPositionName || cert.officerTitle === admin.Position)) {
88178
+ return admin;
88179
+ }
88180
+ }
88181
+ return false;
88182
+ });
88164
88183
  const certifier = {
88165
88184
  PersonName: {
88166
88185
  FirstName: cert.firstName,
88167
88186
  LastName: cert.lastName,
88168
88187
  MiddleName: cert.middleName,
88188
+ RoleId: initialAdministratorForCertifier?.RoleId,
88169
88189
  Position: cert.type === "Officer" ? cert.officerTitle ?? null : null
88170
88190
  },
88171
88191
  PostCode: certEntityAddr?.postal_zip ?? null,
@@ -88971,7 +88991,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
88971
88991
  validatedOn: /* @__PURE__ */ new Date(),
88972
88992
  provider: "obr",
88973
88993
  draftPdf,
88974
- documentName: this.validateOptions()?.documentName ?? "Initial Return Draft",
88994
+ documentName: this.validateOptions()?.documentName ?? this.getUpdateMaintainDraftName(task),
88975
88995
  documentType: "pdf"
88976
88996
  });
88977
88997
  }
@@ -88984,6 +89004,15 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
88984
89004
  }
88985
89005
  });
88986
89006
  }
89007
+ getUpdateMaintainDraftName(task) {
89008
+ if (isNoticeOfChangeTask(task)) {
89009
+ return "Notice of Change Draft";
89010
+ }
89011
+ if (isAnnualReturnTask(task)) {
89012
+ return "Annual Return Draft";
89013
+ }
89014
+ return "Initial Return Draft";
89015
+ }
88987
89016
  onEditClick() {
88988
89017
  if (isUpdateMaintain(this.task())) {
88989
89018
  this.serviceOrderId = "";
@@ -89188,73 +89217,73 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
89188
89217
  OntarioComponent
89189
89218
  ], encapsulation: ViewEncapsulation.ShadowDom, host: {
89190
89219
  "[style.height]": "modalHeight()"
89191
- }, template: `<div class="filing">
89192
- <div class="filing-title">
89193
- <h1 class="filing-title-text">{{title() | translate}}</h1>
89194
- <mat-icon (click)="onClose()" class="filing-title-action">close</mat-icon>
89195
- </div>
89196
-
89197
- @if (isEditButton()) {
89198
- <div class="filing-header">
89199
- <button
89200
- mat-stroked-button
89201
- [disabled]="isLoading()"
89202
- (click)="onEditClick()"
89203
- >
89204
- {{ 'Edit' | translate }}
89205
- </button>
89206
- </div>
89207
- }
89208
-
89209
- <div [class.edit]="isEditButton()" class="filing-content">
89210
- @let currentTask = task();
89211
-
89212
- @if (currentTask) {
89213
- @if (isOntarioTask(currentTask)) {
89214
- <ontario
89215
- [task]="currentTask"
89216
- [activeStep]="activeStep()"
89217
- [isNote]="dataWasChanged()"
89218
- [actionsDisabled]="isLoading()"
89219
- [errors]="errors()"
89220
- [prevData]="prevData()"
89221
- (close)="close.emit()"
89222
- (formationValidate)="onOntarioFormationValidate($event)"
89223
- (saveFormationDeltaData)="onOntarioFormationSave($event)"
89224
- (formationSubmit)="onOntarioFormationSubmit()"
89225
- (nextStep)="onNextStepClick()"
89226
- (prevStep)="onOntarioPrevStep()"
89227
- [irValidationConfig]="validationConfig()"
89228
- (irValidate)="validateAndFileInitialReturnTask($event)"
89229
- (saveIrDeltaData)="onOntarioUpdateMaintainSave($event)"
89230
- (irSubmit)="onInitialReturnSubmit()"
89231
- />
89232
- } @else {
89233
- <federal
89234
- [actionsDisabled]="isLoading()"
89235
- [isNote]="dataWasChanged()"
89236
- [activeStep]="activeStep()"
89237
- [task]="currentTask"
89238
- [errors]="errors()"
89239
- (close)="close.emit()"
89240
- (deltaDataChange)="onFederalFormationSave($event)"
89241
- (file)="onFederalFormationSubmit()"
89242
- (validate)="onFederalValidate($event)"
89243
- (umSave)="onFederalUpdateMaintainSave($event)"
89244
- (umValidate)="onFederalUpdateMaintainValidate($event)"
89245
- (umSubmit)="onFederalUpdateMaintainSubmit()"
89246
- (nextStep)="defineInitialStep()"
89247
- />
89248
- }
89249
- }
89250
-
89251
- @if (isLoading()) {
89252
- <div class="filing-content-loading">
89253
- <mat-spinner [diameter]="40" />
89254
- </div>
89255
- }
89256
- </div>
89257
- </div>
89220
+ }, template: `<div class="filing">\r
89221
+ <div class="filing-title">\r
89222
+ <h1 class="filing-title-text">{{title() | translate}}</h1>\r
89223
+ <mat-icon (click)="onClose()" class="filing-title-action">close</mat-icon>\r
89224
+ </div>\r
89225
+ \r
89226
+ @if (isEditButton()) {\r
89227
+ <div class="filing-header">\r
89228
+ <button\r
89229
+ mat-stroked-button\r
89230
+ [disabled]="isLoading()"\r
89231
+ (click)="onEditClick()"\r
89232
+ >\r
89233
+ {{ 'Edit' | translate }}\r
89234
+ </button>\r
89235
+ </div>\r
89236
+ }\r
89237
+ \r
89238
+ <div [class.edit]="isEditButton()" class="filing-content">\r
89239
+ @let currentTask = task();\r
89240
+ \r
89241
+ @if (currentTask) {\r
89242
+ @if (isOntarioTask(currentTask)) {\r
89243
+ <ontario\r
89244
+ [task]="currentTask"\r
89245
+ [activeStep]="activeStep()"\r
89246
+ [isNote]="dataWasChanged()"\r
89247
+ [actionsDisabled]="isLoading()"\r
89248
+ [errors]="errors()"\r
89249
+ [prevData]="prevData()"\r
89250
+ (close)="close.emit()"\r
89251
+ (formationValidate)="onOntarioFormationValidate($event)"\r
89252
+ (saveFormationDeltaData)="onOntarioFormationSave($event)"\r
89253
+ (formationSubmit)="onOntarioFormationSubmit()"\r
89254
+ (nextStep)="onNextStepClick()"\r
89255
+ (prevStep)="onOntarioPrevStep()"\r
89256
+ [irValidationConfig]="validationConfig()"\r
89257
+ (irValidate)="validateAndFileInitialReturnTask($event)"\r
89258
+ (saveIrDeltaData)="onOntarioUpdateMaintainSave($event)"\r
89259
+ (irSubmit)="onInitialReturnSubmit()"\r
89260
+ />\r
89261
+ } @else {\r
89262
+ <federal\r
89263
+ [actionsDisabled]="isLoading()"\r
89264
+ [isNote]="dataWasChanged()"\r
89265
+ [activeStep]="activeStep()"\r
89266
+ [task]="currentTask"\r
89267
+ [errors]="errors()"\r
89268
+ (close)="close.emit()"\r
89269
+ (deltaDataChange)="onFederalFormationSave($event)"\r
89270
+ (file)="onFederalFormationSubmit()"\r
89271
+ (validate)="onFederalValidate($event)"\r
89272
+ (umSave)="onFederalUpdateMaintainSave($event)"\r
89273
+ (umValidate)="onFederalUpdateMaintainValidate($event)"\r
89274
+ (umSubmit)="onFederalUpdateMaintainSubmit()"\r
89275
+ (nextStep)="defineInitialStep()"\r
89276
+ />\r
89277
+ }\r
89278
+ }\r
89279
+ \r
89280
+ @if (isLoading()) {\r
89281
+ <div class="filing-content-loading">\r
89282
+ <mat-spinner [diameter]="40" />\r
89283
+ </div>\r
89284
+ }\r
89285
+ </div>\r
89286
+ </div>\r
89258
89287
  `, styles: ["/* src/app/components/filing/filing.component.scss */\n:host {\n display: flex;\n}\n:host .filing {\n position: relative;\n height: 100%;\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .filing-title {\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .filing-title-text {\n color: #666666;\n}\n:host .filing-title-action {\n cursor: pointer;\n}\n:host .filing-header {\n display: flex;\n width: 100%;\n justify-content: flex-end;\n}\n:host .filing-content {\n height: calc(100% - 44px);\n}\n:host .filing-content.edit {\n height: calc(100% - 95px);\n}\n:host .filing-content-loading {\n display: flex;\n align-items: center;\n justify-content: center;\n position: absolute;\n background: transparent;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.pointer {\n cursor: pointer;\n}\n/*# sourceMappingURL=filing.component.css.map */\n", '/* src/app/components/filing/typography.scss */\n:host {\n --filing-modal-color-grey: #444444;\n --filing-modal-color-dark-blue: #485673;\n --filing-modal-color-grey-mid: #A0A0A0;\n --filing-modal-color-light-blue: #3778E4;\n --filing-modal-color-black: #444444;\n}\nmat-icon {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1 {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2 {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3 {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 20px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\n.body-1-regular {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0;\n}\n.black {\n color: var(--filing-modal-color-black);\n}\n.grey {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue {\n color: var(--filing-modal-color-light-blue);\n}\n/*# sourceMappingURL=typography.css.map */\n', '/* src/app/components/filing/material-theme.scss */\n.filling {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\n.filling {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n.filing .mat-primary .mat-pseudo-checkbox-checked,\n.filing .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n.filing .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n/*# sourceMappingURL=material-theme.css.map */\n'] }]
89259
89288
  }], () => [], null);
89260
89289
  })();
@@ -93764,6 +93793,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
93764
93793
  "A legal opinion was obtained to use the proposed name": "A legal opinion was obtained to use the proposed name",
93765
93794
  "Legal Opinion": "Legal Opinion",
93766
93795
  "Lawyer Signing Opinion": "Lawyer Signing Opinion",
93796
+ "Law Firm": "Law Firm",
93767
93797
  "Laywer Signing Opinion is required": "Laywer Signing Opinion is required",
93768
93798
  "Unit Type is required": "Unit Type is required",
93769
93799
  "Unit Number is required": "Unit Number is required",
@@ -94032,6 +94062,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
94032
94062
  "A legal opinion was obtained to use the proposed name": "Un avis juridique a \xE9t\xE9 obtenu concernant l'utilisation du nom propos\xE9",
94033
94063
  "Legal Opinion": "Avis juridique",
94034
94064
  "Lawyer Signing Opinion": "Avocat signataire de l'avis",
94065
+ "Law Firm": "Cabinet d'avocats",
94035
94066
  "Laywer Signing Opinion is required": "L'avocat signataire de l'avis est requis",
94036
94067
  "Unit Type is required": "Le type d'unit\xE9 est requis",
94037
94068
  "Unit Number is required": "Le num\xE9ro d'unit\xE9 est requis",