@dyedurham/search-and-file-widget 1.5.8 → 1.5.9
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.
- package/dnd-filing-shell.js +1169 -985
- package/package.json +1 -1
package/dnd-filing-shell.js
CHANGED
|
@@ -49648,7 +49648,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
49648
49648
|
}
|
|
49649
49649
|
function formationTaskToECore(task, deltaData) {
|
|
49650
49650
|
const entityDetails = deltaData.entityDetails;
|
|
49651
|
-
const sharesRestrictions = deltaData.sharesRestrictions;
|
|
49652
49651
|
const isNumbered = entityDetails.corporationNameType === NameType.Numbered;
|
|
49653
49652
|
const isFrench = entityDetails.corporationNameType === NameType.NamedFrench;
|
|
49654
49653
|
const isBilingual = entityDetails.corporationNameType === NameType.NamedBilingual;
|
|
@@ -49671,6 +49670,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
49671
49670
|
const naicsData = task.entity._profile?.naics;
|
|
49672
49671
|
const requestedDate = task._ext._future_filing_date ? new Date(task._ext._future_filing_date).toISOString().split("T")[0] : (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
49673
49672
|
const contact = task.entity.affiliations.find((a) => a._id === deltaData.contactUid);
|
|
49673
|
+
const restrictionsOnBusiness = task.entity._articles?.restrictions || "None";
|
|
49674
|
+
const restrictionsOnShareClasses = task.entity._articles?.share_terms || "";
|
|
49675
|
+
const restrictionsOnShareRights = task.entity._articles?.share_restrictions_text || "None";
|
|
49676
|
+
const restrictionsOnShareTransfers = task.entity._articles?.transfer_restrictions_text || "None";
|
|
49677
|
+
const otherProvisions = task.entity._articles?.other_provisions || "None";
|
|
49674
49678
|
const eCorePayload = {
|
|
49675
49679
|
IncorporationType: entityDetails.corporationNameType,
|
|
49676
49680
|
LegalEnding: legalEnding,
|
|
@@ -49683,11 +49687,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
49683
49687
|
MaximumNumberOfDirectors: task.entity._articles?.max_directors,
|
|
49684
49688
|
Directors: directors,
|
|
49685
49689
|
Incorporators: incorporators,
|
|
49686
|
-
RestrictionsOnBusiness:
|
|
49687
|
-
RestrictionsOnShareClasses:
|
|
49688
|
-
RestrictionsOnShareRights:
|
|
49689
|
-
RestrictionsOnShareTransfers:
|
|
49690
|
-
OtherProvisions:
|
|
49690
|
+
RestrictionsOnBusiness: restrictionsOnBusiness,
|
|
49691
|
+
RestrictionsOnShareClasses: restrictionsOnShareClasses,
|
|
49692
|
+
RestrictionsOnShareRights: restrictionsOnShareRights,
|
|
49693
|
+
RestrictionsOnShareTransfers: restrictionsOnShareTransfers,
|
|
49694
|
+
OtherProvisions: otherProvisions,
|
|
49691
49695
|
EffectiveType: determineEffectiveType(requestedDate),
|
|
49692
49696
|
OfficialEmail: officialBusinessEmail || "",
|
|
49693
49697
|
NAICSCode: naicsData?.code || "",
|
|
@@ -50155,22 +50159,22 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50155
50159
|
{ label: "Wynd", value: "WYND" }
|
|
50156
50160
|
];
|
|
50157
50161
|
STREET_DIRECTION_OPTIONS = [
|
|
50158
|
-
{ label: "
|
|
50159
|
-
{ label: "
|
|
50160
|
-
{ label: "
|
|
50161
|
-
{ label: "
|
|
50162
|
-
{ label: "
|
|
50163
|
-
{ label: "
|
|
50164
|
-
{ label: "
|
|
50165
|
-
{ label: "
|
|
50166
|
-
{ label: "
|
|
50167
|
-
{ label: "
|
|
50168
|
-
{ label: "
|
|
50169
|
-
{ label: "
|
|
50170
|
-
{ label: "
|
|
50171
|
-
{ label: "
|
|
50172
|
-
{ label: "
|
|
50173
|
-
{ label: "
|
|
50162
|
+
{ label: "North", value: "N" },
|
|
50163
|
+
{ label: "Nord", value: "NF" },
|
|
50164
|
+
{ label: "Northeast", value: "NE" },
|
|
50165
|
+
{ label: "Nord-Est", value: "NEF" },
|
|
50166
|
+
{ label: "Northwest", value: "NW" },
|
|
50167
|
+
{ label: "Nord-Ouest", value: "NWF" },
|
|
50168
|
+
{ label: "South", value: "S" },
|
|
50169
|
+
{ label: "Sud", value: "SF" },
|
|
50170
|
+
{ label: "Southeast", value: "SE" },
|
|
50171
|
+
{ label: "Sud-Est", value: "SEF" },
|
|
50172
|
+
{ label: "Southwest", value: "SW" },
|
|
50173
|
+
{ label: "Sud-Ouest", value: "SWF" },
|
|
50174
|
+
{ label: "East", value: "E" },
|
|
50175
|
+
{ label: "Est", value: "EF" },
|
|
50176
|
+
{ label: "West", value: "W" },
|
|
50177
|
+
{ label: "Ouest", value: "WF" }
|
|
50174
50178
|
];
|
|
50175
50179
|
LEGAL_ENDING_OPTIONS = [
|
|
50176
50180
|
{ label: "Corp.", value: ECoreLegalEndingType.Corp },
|
|
@@ -50421,7 +50425,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50421
50425
|
FormationFormControls2["ProposedCorporationNameFr"] = "proposedCorporationNameFr";
|
|
50422
50426
|
FormationFormControls2["NuansReportReferenceFr"] = "nuansReportReferenceFr";
|
|
50423
50427
|
FormationFormControls2["NuansReportDateFr"] = "nuansReportDateFr";
|
|
50424
|
-
FormationFormControls2["
|
|
50428
|
+
FormationFormControls2["wasLegalOpinionObtained"] = "wasLegalOpinionObtained";
|
|
50425
50429
|
FormationFormControls2["RequestedDateForIncorporation"] = "requestedDateForIncorporation";
|
|
50426
50430
|
FormationFormControls2["LawyerSigningOpinion"] = "lawyerSigningOpinion";
|
|
50427
50431
|
FormationFormControls2["OtherProvisions"] = "otherProvisions";
|
|
@@ -50770,7 +50774,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50770
50774
|
const statusStr = status ? String(status) : "Failure";
|
|
50771
50775
|
return new Error(msgs.length ? `${prefix} (HTTP ${httpStatus}, ${statusStr}): ${msgs.join(" | ")}` : `${prefix} (HTTP ${httpStatus}, ${statusStr}).`);
|
|
50772
50776
|
}
|
|
50773
|
-
function deepEqual(a, b
|
|
50777
|
+
function deepEqual(a, b) {
|
|
50774
50778
|
if (a === b)
|
|
50775
50779
|
return true;
|
|
50776
50780
|
if (Number.isNaN(a) && Number.isNaN(b))
|
|
@@ -50784,20 +50788,19 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50784
50788
|
if (a.length !== b.length)
|
|
50785
50789
|
return false;
|
|
50786
50790
|
for (let i = 0; i < a.length; i++) {
|
|
50787
|
-
if (!deepEqual(a[i], b[i]
|
|
50791
|
+
if (!deepEqual(a[i], b[i]))
|
|
50788
50792
|
return false;
|
|
50789
50793
|
}
|
|
50790
50794
|
return true;
|
|
50791
50795
|
}
|
|
50792
|
-
const
|
|
50793
|
-
const
|
|
50794
|
-
const keysB = Object.keys(b).filter((k) => !omitSet.has(k));
|
|
50796
|
+
const keysA = Object.keys(a).filter((key) => a[key] !== void 0);
|
|
50797
|
+
const keysB = Object.keys(b).filter((key) => b[key] !== void 0);
|
|
50795
50798
|
if (keysA.length !== keysB.length)
|
|
50796
50799
|
return false;
|
|
50797
50800
|
for (const key of keysA) {
|
|
50798
50801
|
if (!Object.prototype.hasOwnProperty.call(b, key))
|
|
50799
50802
|
return false;
|
|
50800
|
-
if (!deepEqual(a[key], b[key]
|
|
50803
|
+
if (!deepEqual(a[key], b[key])) {
|
|
50801
50804
|
return false;
|
|
50802
50805
|
}
|
|
50803
50806
|
}
|
|
@@ -50876,6 +50879,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50876
50879
|
const countrySummary = [city, province, postalCode, country].filter(Boolean).join(", ");
|
|
50877
50880
|
return `${[careOf, unitSummary, streetSummary, countrySummary].filter(Boolean).join(", ")}`;
|
|
50878
50881
|
}
|
|
50882
|
+
function getContactDetailsPreview(email, phone, t) {
|
|
50883
|
+
const details = [email, phone].filter((value) => Boolean(value?.trim()));
|
|
50884
|
+
if (details.length) {
|
|
50885
|
+
return details.join(" | ");
|
|
50886
|
+
}
|
|
50887
|
+
return t ? t("Not specified") : "Not specified";
|
|
50888
|
+
}
|
|
50879
50889
|
function affiliationTypeToChipType(affiliationType) {
|
|
50880
50890
|
if (!affiliationType) {
|
|
50881
50891
|
return;
|
|
@@ -51427,7 +51437,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51427
51437
|
const corporationNameType = form.get(FormationFormControls.CorporationNameType)?.value;
|
|
51428
51438
|
const isNumbered = corporationNameType === NameType.Numbered;
|
|
51429
51439
|
if (isNumbered) {
|
|
51430
|
-
form.get(FormationFormControls.
|
|
51440
|
+
form.get(FormationFormControls.wasLegalOpinionObtained)?.setValue(false, { emitEvent: false });
|
|
51431
51441
|
}
|
|
51432
51442
|
if ([NameType.NamedEnglish, NameType.NamedBilingual, NameType.NamedCombined].includes(corporationNameType)) {
|
|
51433
51443
|
form.get(FormationFormControls.ProposedCorporationNameEng)?.setValue(name, { emitEvent: false });
|
|
@@ -51528,7 +51538,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51528
51538
|
type: FormType.Checkbox,
|
|
51529
51539
|
placeholder: "",
|
|
51530
51540
|
label: "A legal opinion was obtained to use the proposed name",
|
|
51531
|
-
formControlName: FormationFormControls.
|
|
51541
|
+
formControlName: FormationFormControls.wasLegalOpinionObtained,
|
|
51532
51542
|
required: true,
|
|
51533
51543
|
isVisible: (form) => form.get(FormationFormControls.CorporationNameType)?.value !== NameType.Numbered,
|
|
51534
51544
|
class: "span-12"
|
|
@@ -51559,7 +51569,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51559
51569
|
];
|
|
51560
51570
|
};
|
|
51561
51571
|
generateOntarioFormationFormContactControl = (contacts) => {
|
|
51562
|
-
const contactsOptions = contacts.map((contact) => ({ label:
|
|
51572
|
+
const contactsOptions = contacts.map((contact) => ({ label: contact.participant._profile.name ?? "", value: contact._id }));
|
|
51563
51573
|
return [
|
|
51564
51574
|
{
|
|
51565
51575
|
type: FormType.Select,
|
|
@@ -51574,7 +51584,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51574
51584
|
dynamicLabel: (form, t) => {
|
|
51575
51585
|
const id = form.get(FormationFormControls.Contact)?.value;
|
|
51576
51586
|
const contact = contacts.find((contact2) => contact2._id === id);
|
|
51577
|
-
|
|
51587
|
+
const email = contact?.addresses[0]?.emails?.primary;
|
|
51588
|
+
const phone = contact?.addresses[0]?.contact_numbers?.primary;
|
|
51589
|
+
return `<span class="body-1-semibold">${t("Contact Details")}:</span> ${getContactDetailsPreview(email, phone, t)}`;
|
|
51578
51590
|
},
|
|
51579
51591
|
formControlName: "",
|
|
51580
51592
|
required: false,
|
|
@@ -51592,6 +51604,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51592
51604
|
required: true,
|
|
51593
51605
|
class: "span-12",
|
|
51594
51606
|
options: []
|
|
51607
|
+
},
|
|
51608
|
+
{
|
|
51609
|
+
type: FormType.Text,
|
|
51610
|
+
dynamicLabel: (_, t) => `<span class="body-1-semibold">${t("Confirm Address Parts")}:</span>`,
|
|
51611
|
+
placeholder: "",
|
|
51612
|
+
class: "span-12",
|
|
51613
|
+
formControlName: ""
|
|
51595
51614
|
}
|
|
51596
51615
|
];
|
|
51597
51616
|
FORMATION_DELTA_CARD_FORM_CORPORATION_LEGAL_OPINION_CONFIRM_ADDRESS = [
|
|
@@ -51674,6 +51693,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51674
51693
|
const delta = task.deltaData;
|
|
51675
51694
|
const officialBusinessEmail = address?.communications?.find((c) => c.type === "Business Email")?.value;
|
|
51676
51695
|
const entityDetailsDelta = delta?.entityDetails;
|
|
51696
|
+
const referenceNumbers = delta?.referenceNumbers;
|
|
51677
51697
|
if (directors.length) {
|
|
51678
51698
|
directors.forEach((director) => {
|
|
51679
51699
|
const participantId = director.participant._id;
|
|
@@ -51691,11 +51711,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51691
51711
|
registeredOfficeAddress = this.generateAddressFormGroup(address, delta?.registeredOfficeAddress);
|
|
51692
51712
|
const config2 = {};
|
|
51693
51713
|
const requestedDate = task._ext._future_filing_date ? new Date(task._ext._future_filing_date).toISOString().split("T")[0] : (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
51694
|
-
const naicsData =
|
|
51695
|
-
const primaryActivity = `${naicsData
|
|
51714
|
+
const naicsData = task.entity._profile?.naics;
|
|
51715
|
+
const primaryActivity = `${naicsData?.code} - ${naicsData?.description}`;
|
|
51696
51716
|
const corporationNameType = entityDetailsDelta?.corporationNameType || (task._ext._numbered_company === true ? NameType.Numbered : NameType.NamedEnglish);
|
|
51697
51717
|
const isBilingualName = corporationNameType === NameType.NamedBilingual;
|
|
51698
|
-
config2[FormationFormGroups.ReferenceNumbers] = this.generateReferenceNumbersFormGroup(
|
|
51718
|
+
config2[FormationFormGroups.ReferenceNumbers] = this.generateReferenceNumbersFormGroup(referenceNumbers);
|
|
51699
51719
|
config2[FormationFormGroups.CorporationDetails] = new FormGroup({
|
|
51700
51720
|
[FormationFormControls.CorporationNameType]: new FormControl(corporationNameType ?? "", Validators.required),
|
|
51701
51721
|
[FormationFormControls.LegalEnding]: new FormControl(entityDetailsDelta?.legalIdentifier ?? task.entity._profile.legal_entity_identifier, Validators.required),
|
|
@@ -51705,7 +51725,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51705
51725
|
[FormationFormControls.ProposedCorporationNameFr]: new FormControl(entityDetailsDelta?.corporationNameFrench ?? (isBilingualName ? task.entity._profile.secondary_name : task.entity._profile.name), [requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedFrench), requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedBilingual)]),
|
|
51706
51726
|
[FormationFormControls.NuansReportReferenceFr]: new FormControl(entityDetailsDelta?.nuansReportFrenchReferenceNumber ?? "", [requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedFrench), requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedBilingual)]),
|
|
51707
51727
|
[FormationFormControls.NuansReportDateFr]: new FormControl(entityDetailsDelta?.nuansReportFrenchReferenceDate ?? "", [requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedFrench), requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedBilingual)]),
|
|
51708
|
-
[FormationFormControls.
|
|
51728
|
+
[FormationFormControls.wasLegalOpinionObtained]: new FormControl(delta?.legalOpinion?.wasLegalOpinionObtained ?? false),
|
|
51709
51729
|
[FormationFormControls.RequestedDateForIncorporation]: new FormControl({ value: requestedDate, disabled: true }),
|
|
51710
51730
|
[FormationFormControls.PrimaryActivity]: new FormControl({ value: primaryActivity, disabled: true }),
|
|
51711
51731
|
[FormationFormControls.OfficialEmail]: new FormControl({ value: officialBusinessEmail, disabled: true })
|
|
@@ -51714,12 +51734,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51714
51734
|
if (registeredOfficeAddress) {
|
|
51715
51735
|
config2[FormationFormGroups.RegisteredOfficeAddress] = registeredOfficeAddress;
|
|
51716
51736
|
}
|
|
51717
|
-
task.entity._articles?.restrictions || "None";
|
|
51737
|
+
const restrictionsOnBusiness = task.entity._articles?.restrictions || "None";
|
|
51718
51738
|
const restrictionsOnShareClasses = task.entity._articles?.share_terms || "";
|
|
51719
51739
|
const restrictionsOnShareRights = task.entity._articles?.share_restrictions_text || "None";
|
|
51720
51740
|
const restrictionsOnShareTransfers = task.entity._articles?.transfer_restrictions_text || "None";
|
|
51721
51741
|
const otherProvisions = task.entity._articles?.other_provisions || "None";
|
|
51722
51742
|
config2[FormationFormGroups.SharesAndRestrictions] = new FormGroup({
|
|
51743
|
+
[FormationFormControls.RestrictionsOnBusiness]: new FormControl({ value: restrictionsOnBusiness, disabled: true }),
|
|
51723
51744
|
[FormationFormControls.RestrictionsOnShareClasses]: new FormControl({ value: restrictionsOnShareClasses, disabled: true }),
|
|
51724
51745
|
[FormationFormControls.RestrictionsOnShareRights]: new FormControl({ value: restrictionsOnShareRights, disabled: true }),
|
|
51725
51746
|
[FormationFormControls.RestrictionsOnShareTransfers]: new FormControl({ value: restrictionsOnShareTransfers, disabled: true }),
|
|
@@ -76417,11 +76438,19 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
76417
76438
|
* the label after an option is selected.
|
|
76418
76439
|
*/
|
|
76419
76440
|
getDisplayFn(field) {
|
|
76441
|
+
const form = this.form();
|
|
76420
76442
|
return (value) => {
|
|
76421
76443
|
if (value === null || value === void 0 || value === "")
|
|
76422
76444
|
return "";
|
|
76423
|
-
const
|
|
76424
|
-
|
|
76445
|
+
const staticOpt = (field.options ?? []).find((o) => o.value === value);
|
|
76446
|
+
if (staticOpt)
|
|
76447
|
+
return staticOpt.label;
|
|
76448
|
+
if (field.dynamicOptions) {
|
|
76449
|
+
const dynOpt = field.dynamicOptions(form).find((o) => o.value === value);
|
|
76450
|
+
if (dynOpt)
|
|
76451
|
+
return dynOpt.label;
|
|
76452
|
+
}
|
|
76453
|
+
return String(value);
|
|
76425
76454
|
};
|
|
76426
76455
|
}
|
|
76427
76456
|
/**
|
|
@@ -76447,7 +76476,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
76447
76476
|
{ provide: DateAdapter, useClass: MomentDateAdapter },
|
|
76448
76477
|
{ provide: MAT_DATE_FORMATS, useValue: MY_DATE_FORMATS },
|
|
76449
76478
|
{ provide: MAT_DATE_LOCALE, useValue: "en-GB" }
|
|
76450
|
-
])], decls: 6, vars: 4, consts: [["autocompleteRef", "matAutocomplete"], ["picker", ""], [1, "filling-form-fields", 3, "formGroup"], [3, "class"], [3, "last", "class"], [3, "class", "warning"], [3, "warning", "class"], [3, "class", "formControlName", "items"], [1, "filling-form-fields-item-label", "body-1-regular"], ["appearance", "outline"], ["matInput", "", 3, "change", "formControlName", "placeholder", "matAutocomplete"], [3, "optionSelected", "displayWith"], [1, "filing-form-group-select-option", 3, "value"], ["disabled", ""], ["matSuffix", "", 1, "suffix-container"], ["matSuffix", ""], ["mat-icon-button", "", 3, "click"], [1, "arrow-icon"], [3, "change", "formControlName"], [1, "body-1-regular"], ["matSuffix", "", 1, "filling-form-fields-item-icon", 3, "warning"], [1, "filling-form-fields-item-hint", 3, "warning"], ["matSuffix", "", 1, "filling-form-fields-item-icon"], [1, "filling-form-fields-item-hint"], [3, "options", "control", "placeholder", "required"], [1, "filling-form-fields-item-label", "body-1-regular", 3, "warning"], ["matInput", "", 3, "dateChange", "matDatepicker", "formControlName", "placeholder"], ["matSuffix", "", 3, "for"], ["matDatepickerToggleIcon", ""], ["matInput", "", 3, "change", "readonly", "formControlName", "placeholder"], [3, "formControlName", "items"], [1, "filling-form-fields-item-text", "body-1-regular", "grey", 3, "last", "class", "innerHTML"], [1, "filling-form-fields-item-text", "body-1-regular", "grey", 3, "innerHTML"]], template: function FilingFormGroupComponent_Template(rf, ctx) {
|
|
76479
|
+
])], decls: 6, vars: 4, consts: [["autocompleteRef", "matAutocomplete"], ["picker", ""], [1, "filling-form-fields", 3, "formGroup"], [3, "class"], [3, "last", "class"], [3, "class", "warning"], [3, "warning", "class"], [3, "class", "formControlName", "items"], [1, "filling-form-fields-item-label", "body-1-regular"], ["appearance", "outline"], ["matInput", "", 3, "change", "formControlName", "placeholder", "matAutocomplete"], [3, "optionSelected", "displayWith"], [1, "filing-form-group-select-option", 3, "value"], ["disabled", ""], ["matSuffix", "", 1, "suffix-container"], ["matSuffix", ""], ["mat-icon-button", "", 3, "click"], [1, "arrow-icon"], [3, "change", "formControlName"], [1, "body-1-regular", "black"], ["matSuffix", "", 1, "filling-form-fields-item-icon", 3, "warning"], [1, "filling-form-fields-item-hint", 3, "warning"], ["matSuffix", "", 1, "filling-form-fields-item-icon"], [1, "filling-form-fields-item-hint"], [3, "options", "control", "placeholder", "required"], [1, "filling-form-fields-item-label", "body-1-regular", 3, "warning"], ["matInput", "", 3, "dateChange", "matDatepicker", "formControlName", "placeholder"], ["matSuffix", "", 3, "for"], ["matDatepickerToggleIcon", ""], ["matInput", "", 3, "change", "readonly", "formControlName", "placeholder"], [3, "formControlName", "items"], [1, "filling-form-fields-item-text", "body-1-regular", "grey", 3, "last", "class", "innerHTML"], [1, "filling-form-fields-item-text", "body-1-regular", "grey", 3, "innerHTML"]], template: function FilingFormGroupComponent_Template(rf, ctx) {
|
|
76451
76480
|
if (rf & 1) {
|
|
76452
76481
|
\u0275\u0275declareLet(0)(1);
|
|
76453
76482
|
\u0275\u0275elementStart(2, "section")(3, "div", 2);
|
|
@@ -76597,7 +76626,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
76597
76626
|
>\r
|
|
76598
76627
|
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;\r
|
|
76599
76628
|
<div>\r
|
|
76600
|
-
<span class="body-1-regular" [class.warning]="!!previousValue">{{\r
|
|
76629
|
+
<span class="body-1-regular black" [class.warning]="!!previousValue">{{\r
|
|
76601
76630
|
label\r
|
|
76602
76631
|
}}</span>\r
|
|
76603
76632
|
@if (previousValue != null) {\r
|
|
@@ -77292,10 +77321,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77292
77321
|
}
|
|
77293
77322
|
function OntarioIncorporationFormComponent_Conditional_14_Template(rf, ctx) {
|
|
77294
77323
|
if (rf & 1) {
|
|
77295
|
-
\u0275\u0275elementStart(0, "expandable-list-card",
|
|
77324
|
+
\u0275\u0275elementStart(0, "expandable-list-card", 6);
|
|
77296
77325
|
\u0275\u0275element(1, "p", 11);
|
|
77297
77326
|
\u0275\u0275elementEnd();
|
|
77298
|
-
\u0275\u0275text(2, "> ");
|
|
77299
77327
|
}
|
|
77300
77328
|
if (rf & 2) {
|
|
77301
77329
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
@@ -77308,7 +77336,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77308
77336
|
}
|
|
77309
77337
|
function OntarioIncorporationFormComponent_Conditional_16_Template(rf, ctx) {
|
|
77310
77338
|
if (rf & 1) {
|
|
77311
|
-
\u0275\u0275elementStart(0, "expandable-card",
|
|
77339
|
+
\u0275\u0275elementStart(0, "expandable-card", 7);
|
|
77312
77340
|
\u0275\u0275element(1, "filing-form-group", 10);
|
|
77313
77341
|
\u0275\u0275elementEnd();
|
|
77314
77342
|
}
|
|
@@ -77322,7 +77350,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77322
77350
|
}
|
|
77323
77351
|
function OntarioIncorporationFormComponent_Conditional_18_Template(rf, ctx) {
|
|
77324
77352
|
if (rf & 1) {
|
|
77325
|
-
\u0275\u0275element(0, "expandable-list-card",
|
|
77353
|
+
\u0275\u0275element(0, "expandable-list-card", 6);
|
|
77326
77354
|
}
|
|
77327
77355
|
if (rf & 2) {
|
|
77328
77356
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
@@ -77384,9 +77412,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77384
77412
|
return "";
|
|
77385
77413
|
}
|
|
77386
77414
|
if (articles.min_directors === articles.max_directors) {
|
|
77387
|
-
return `<span class="body-1-semibold">Number of Directors:</span> ${articles.min_directors}`;
|
|
77415
|
+
return `<span class="body-1-semibold black">Number of Directors:</span> ${articles.min_directors}`;
|
|
77388
77416
|
}
|
|
77389
|
-
return `<span class="body-1-semibold">Minimum and Maximum Number of Directors:</span> ${articles.min_directors}-${articles.max_directors}`;
|
|
77417
|
+
return `<span class="body-1-semibold black">Minimum and Maximum Number of Directors:</span> ${articles.min_directors}-${articles.max_directors}`;
|
|
77390
77418
|
});
|
|
77391
77419
|
constructor() {
|
|
77392
77420
|
effect(() => {
|
|
@@ -77396,13 +77424,16 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77396
77424
|
effect(() => {
|
|
77397
77425
|
const task = this.task();
|
|
77398
77426
|
if (task) {
|
|
77399
|
-
const contacts = task.entity.affiliations.filter((a) =>
|
|
77427
|
+
const contacts = task.entity.affiliations.filter((a) => {
|
|
77428
|
+
console.log(a.role);
|
|
77429
|
+
return a.role.role_name === "Contact";
|
|
77430
|
+
});
|
|
77400
77431
|
this.contactsFields = generateOntarioFormationFormContactControl(contacts);
|
|
77401
77432
|
}
|
|
77402
77433
|
});
|
|
77403
77434
|
}
|
|
77404
77435
|
get isLegalOpinion() {
|
|
77405
|
-
return !!this.form().get(this.groups.CorporationDetails)?.get(this.controls.
|
|
77436
|
+
return !!this.form().get(this.groups.CorporationDetails)?.get(this.controls.wasLegalOpinionObtained)?.value;
|
|
77406
77437
|
}
|
|
77407
77438
|
getFormGroup(key) {
|
|
77408
77439
|
return this.form().get(key);
|
|
@@ -77413,7 +77444,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77413
77444
|
static \u0275fac = function OntarioIncorporationFormComponent_Factory(__ngFactoryType__) {
|
|
77414
77445
|
return new (__ngFactoryType__ || _OntarioIncorporationFormComponent)();
|
|
77415
77446
|
};
|
|
77416
|
-
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _OntarioIncorporationFormComponent, selectors: [["ontario-incorporation-form"]], inputs: { form: [1, "form"], task: [1, "task"], errors: [1, "errors"], isNote: [1, "isNote"], statusIcon: [1, "statusIcon"], isSubmitted: [1, "isSubmitted"] }, decls: 21, vars: 19, consts: [[1, "incorporation-form"], ["title", "Entity changed", "content", "A new draft needs to be generated as the Entity was changed since the last draft was produced.", 3, "type"], ["title", "The following issues need to be resolved before proceeding:", 3, "content"], [1, "incorporation-form-content"], [3, "title"], [3, "isValid", "isStatusIcon", "title"], [3, "
|
|
77447
|
+
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _OntarioIncorporationFormComponent, selectors: [["ontario-incorporation-form"]], inputs: { form: [1, "form"], task: [1, "task"], errors: [1, "errors"], isNote: [1, "isNote"], statusIcon: [1, "statusIcon"], isSubmitted: [1, "isSubmitted"] }, decls: 21, vars: 19, consts: [[1, "incorporation-form"], ["title", "Entity changed", "content", "A new draft needs to be generated as the Entity was changed since the last draft was produced.", 3, "type"], ["title", "The following issues need to be resolved before proceeding:", 3, "content"], [1, "incorporation-form-content"], [3, "title"], [3, "isValid", "isStatusIcon", "title"], [3, "isValid", "isOpen", "isStatusIcon", "config", "configKey", "formArray", "title"], [3, "isStatusIcon", "title"], [3, "isStatusIcon", "isValid", "title"], [1, "incorporation-form-item"], [3, "isSubmitted", "form", "config"], ["slot", "subtitle", 1, "body-1-regular", "black", 3, "innerHTML"]], template: function OntarioIncorporationFormComponent_Template(rf, ctx) {
|
|
77417
77448
|
if (rf & 1) {
|
|
77418
77449
|
\u0275\u0275elementStart(0, "div", 0);
|
|
77419
77450
|
\u0275\u0275template(1, OntarioIncorporationFormComponent_Conditional_1_Template, 1, 1, "alert", 1)(2, OntarioIncorporationFormComponent_Conditional_2_Template, 1, 1, "alert", 2);
|
|
@@ -77425,11 +77456,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77425
77456
|
\u0275\u0275declareLet(9);
|
|
77426
77457
|
\u0275\u0275template(10, OntarioIncorporationFormComponent_Conditional_10_Template, 2, 6, "expandable-card", 5);
|
|
77427
77458
|
\u0275\u0275declareLet(11)(12)(13);
|
|
77428
|
-
\u0275\u0275template(14, OntarioIncorporationFormComponent_Conditional_14_Template,
|
|
77459
|
+
\u0275\u0275template(14, OntarioIncorporationFormComponent_Conditional_14_Template, 2, 8, "expandable-list-card", 6);
|
|
77429
77460
|
\u0275\u0275declareLet(15);
|
|
77430
|
-
\u0275\u0275template(16, OntarioIncorporationFormComponent_Conditional_16_Template, 2, 5, "expandable-card",
|
|
77461
|
+
\u0275\u0275template(16, OntarioIncorporationFormComponent_Conditional_16_Template, 2, 5, "expandable-card", 7);
|
|
77431
77462
|
\u0275\u0275declareLet(17);
|
|
77432
|
-
\u0275\u0275template(18, OntarioIncorporationFormComponent_Conditional_18_Template, 1, 7, "expandable-list-card",
|
|
77463
|
+
\u0275\u0275template(18, OntarioIncorporationFormComponent_Conditional_18_Template, 1, 7, "expandable-list-card", 6);
|
|
77433
77464
|
\u0275\u0275declareLet(19);
|
|
77434
77465
|
\u0275\u0275template(20, OntarioIncorporationFormComponent_Conditional_20_Template, 2, 6, "expandable-card", 8);
|
|
77435
77466
|
\u0275\u0275elementEnd()();
|
|
@@ -77491,7 +77522,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77491
77522
|
FilingFormGroupComponent,
|
|
77492
77523
|
ExpandableListCardComponent,
|
|
77493
77524
|
AlertComponent
|
|
77494
|
-
], template: '<div class="incorporation-form">\r\n @if (isNote()) {\r\n <alert [type]="alertType.Info" title="Entity changed" content="A new draft needs to be generated as the Entity was changed since the last draft was produced."/>\r\n }\r\n\r\n @if (errors().length) {\r\n <alert title="The following issues need to be resolved before proceeding:" [content]="errors()"/>\r\n }\r\n\r\n <div class="incorporation-form-content">\r\n @let referenceNumbers = getFormGroup(groups.ReferenceNumbers);\r\n\r\n @if (referenceNumbers) {\r\n <expandable-card [title]="groups.ReferenceNumbers">\r\n <div class="incorporation-form-item">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="referenceNumbers" [config]="referenceNumbersFields"/>\r\n </div>\r\n </expandable-card>\r\n }\r\n\r\n @let corporationDetails = getFormGroup(groups.CorporationDetails);\r\n\r\n @if (corporationDetails) {\r\n <expandable-card [isValid]="!corporationDetails.invalid" [isStatusIcon]="statusIcon()" [title]="groups.CorporationDetails">\r\n <div class="incorporation-form-item">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="corporationDetails" [config]="corporationDetailsCardFields"/>\r\n </div>\r\n </expandable-card>\r\n }\r\n\r\n @if (isLegalOpinion) {\r\n @let legalOpinion = getFormGroup(groups.LegalOpinion);\r\n\r\n @if (legalOpinion) {\r\n <expandable-card [isValid]="!legalOpinion.invalid" [isStatusIcon]="statusIcon()" [title]="groups.LegalOpinion">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="legalOpinion" [config]="legalOpinionLawyerFields"/>\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="legalOpinion" [config]="legalOpinionConfirmAddressFields"/>\r\n </expandable-card>\r\n }\r\n }\r\n\r\n @let registeredOfficeForm = getFormGroup(groups.RegisteredOfficeAddress);\r\n\r\n @if (registeredOfficeForm) {\r\n <expandable-card [isValid]="!registeredOfficeForm.invalid" [isStatusIcon]="statusIcon()" [title]="groups.RegisteredOfficeAddress">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="registeredOfficeForm" [config]="affiliationCardFieldsMap[registeredOfficeForm.get(formationFormControls.AffiliationAddressType)?.value]"/>\r\n </expandable-card>\r\n }\r\n\r\n @let incorporatorsArray = getFormArray(groups.Incorporators);\r\n @let directorsArray = getFormArray(groups.Directors);\r\n\r\n @let isOpenDirectors = (directorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r\n @if (directorsArray) {\r\n <expandable-list-card [isValid]="directorsArray.valid" [isOpen]="isOpenDirectors" [isStatusIcon]="statusIcon()" [config]="directorsCardFieldsMap" [configKey]="controls.AffiliationAddressType" [formArray]="directorsArray" [title]="groups.Directors">\r\n <p slot="subtitle" class="body-1-regular" [innerHTML]="directorsSubtitle()"></p>\r\n </expandable-list-card
|
|
77525
|
+
], template: '<div class="incorporation-form">\r\n @if (isNote()) {\r\n <alert [type]="alertType.Info" title="Entity changed" content="A new draft needs to be generated as the Entity was changed since the last draft was produced."/>\r\n }\r\n\r\n @if (errors().length) {\r\n <alert title="The following issues need to be resolved before proceeding:" [content]="errors()"/>\r\n }\r\n\r\n <div class="incorporation-form-content">\r\n @let referenceNumbers = getFormGroup(groups.ReferenceNumbers);\r\n\r\n @if (referenceNumbers) {\r\n <expandable-card [title]="groups.ReferenceNumbers">\r\n <div class="incorporation-form-item">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="referenceNumbers" [config]="referenceNumbersFields"/>\r\n </div>\r\n </expandable-card>\r\n }\r\n\r\n @let corporationDetails = getFormGroup(groups.CorporationDetails);\r\n\r\n @if (corporationDetails) {\r\n <expandable-card [isValid]="!corporationDetails.invalid" [isStatusIcon]="statusIcon()" [title]="groups.CorporationDetails">\r\n <div class="incorporation-form-item">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="corporationDetails" [config]="corporationDetailsCardFields"/>\r\n </div>\r\n </expandable-card>\r\n }\r\n\r\n @if (isLegalOpinion) {\r\n @let legalOpinion = getFormGroup(groups.LegalOpinion);\r\n\r\n @if (legalOpinion) {\r\n <expandable-card [isValid]="!legalOpinion.invalid" [isStatusIcon]="statusIcon()" [title]="groups.LegalOpinion">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="legalOpinion" [config]="legalOpinionLawyerFields"/>\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="legalOpinion" [config]="legalOpinionConfirmAddressFields"/>\r\n </expandable-card>\r\n }\r\n }\r\n\r\n @let registeredOfficeForm = getFormGroup(groups.RegisteredOfficeAddress);\r\n\r\n @if (registeredOfficeForm) {\r\n <expandable-card [isValid]="!registeredOfficeForm.invalid" [isStatusIcon]="statusIcon()" [title]="groups.RegisteredOfficeAddress">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="registeredOfficeForm" [config]="affiliationCardFieldsMap[registeredOfficeForm.get(formationFormControls.AffiliationAddressType)?.value]"/>\r\n </expandable-card>\r\n }\r\n\r\n @let incorporatorsArray = getFormArray(groups.Incorporators);\r\n @let directorsArray = getFormArray(groups.Directors);\r\n\r\n @let isOpenDirectors = (directorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r\n @if (directorsArray) {\r\n <expandable-list-card [isValid]="directorsArray.valid" [isOpen]="isOpenDirectors" [isStatusIcon]="statusIcon()" [config]="directorsCardFieldsMap" [configKey]="controls.AffiliationAddressType" [formArray]="directorsArray" [title]="groups.Directors">\r\n <p slot="subtitle" class="body-1-regular black" [innerHTML]="directorsSubtitle()"></p>\r\n </expandable-list-card>\r\n }\r\n\r\n @let sharesAndRestrictions = getFormGroup(groups.SharesAndRestrictions);\r\n\r\n @if (sharesAndRestrictions) {\r\n <expandable-card [isStatusIcon]="false" [title]="groups.SharesAndRestrictions">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="sharesAndRestrictions" [config]="sharesAndProvincesFields"/>\r\n </expandable-card>\r\n }\r\n\r\n @let isOpenIncorporators = (incorporatorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r\n\r\n @if (incorporatorsArray) {\r\n <expandable-list-card [isValid]="incorporatorsArray.valid" [isOpen]="isOpenIncorporators" [isStatusIcon]="statusIcon()" [config]="incorporatorsCardFieldsMap" [configKey]="controls.AffiliationAddressType" [formArray]="incorporatorsArray" [title]="groups.Incorporators"/>\r\n }\r\n\r\n @let contact = getFormGroup(groups.Contact);\r\n @if (contact) {\r\n <expandable-card [isStatusIcon]="true" [isValid]="!contact.invalid" [title]="groups.Contact">\r\n <filing-form-group [isSubmitted]="isSubmitted()" [form]="contact" [config]="contactsFields"/>\r\n </expandable-card>\r\n }\r\n </div>\r\n</div>\r\n', 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"] }]
|
|
77495
77526
|
}], () => [], null);
|
|
77496
77527
|
})();
|
|
77497
77528
|
(() => {
|
|
@@ -78156,7 +78187,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
78156
78187
|
[AffiliationAddressType.InternationalSuite]: generateCertifiedByFields(ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_INTERNATIONAL_SUIT)
|
|
78157
78188
|
};
|
|
78158
78189
|
generateOntarioInitialReturnFormContactControl = (contacts) => {
|
|
78159
|
-
const contactsOptions = contacts.map((contact) => ({ label:
|
|
78190
|
+
const contactsOptions = contacts.map((contact) => ({ label: contact.participant._profile.name ?? "", value: contact._id }));
|
|
78160
78191
|
return [
|
|
78161
78192
|
{
|
|
78162
78193
|
type: FormType.Select,
|
|
@@ -78171,7 +78202,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
78171
78202
|
dynamicLabel: (form, t) => {
|
|
78172
78203
|
const id = form.get(IRFormControls.Contact)?.value;
|
|
78173
78204
|
const contact = contacts.find((contact2) => contact2._id === id);
|
|
78174
|
-
|
|
78205
|
+
const email = contact?.addresses[0]?.emails?.primary;
|
|
78206
|
+
const phone = contact?.addresses[0]?.contact_numbers?.primary;
|
|
78207
|
+
return `<span class="body-1-regular grey">${t("Contact Details")}:</span> ${getContactDetailsPreview(email, phone, t)}`;
|
|
78175
78208
|
},
|
|
78176
78209
|
formControlName: "",
|
|
78177
78210
|
required: false,
|
|
@@ -80979,7 +81012,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80979
81012
|
init_core();
|
|
80980
81013
|
init_button();
|
|
80981
81014
|
init_dialog2();
|
|
80982
|
-
init_icon();
|
|
80983
81015
|
init_confirm_modal_constants();
|
|
80984
81016
|
init_ngx_translate_core();
|
|
80985
81017
|
init_core();
|
|
@@ -80992,6 +81024,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80992
81024
|
*
|
|
80993
81025
|
*/
|
|
80994
81026
|
ngOnInit() {
|
|
81027
|
+
this.dialogRef.disableClose = true;
|
|
80995
81028
|
this.modalConfig.update((value) => __spreadValues(__spreadValues({}, value), this.data ?? {}));
|
|
80996
81029
|
}
|
|
80997
81030
|
/**
|
|
@@ -81003,42 +81036,34 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81003
81036
|
static \u0275fac = function ConfirmModalComponent_Factory(__ngFactoryType__) {
|
|
81004
81037
|
return new (__ngFactoryType__ || _ConfirmModalComponent)();
|
|
81005
81038
|
};
|
|
81006
|
-
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _ConfirmModalComponent, selectors: [["confirm-modal"]], decls:
|
|
81039
|
+
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _ConfirmModalComponent, selectors: [["confirm-modal"]], decls: 17, vars: 9, consts: [[1, "confirm-modal"], [1, "confirm-modal-header"], [1, "confirm-modal-header-title", "d-flex", "align-items-center"], [1, "material-icons-outlined", "icon", "mr-s"], [1, "confirm-modal-text"], [1, "confirm-modal-actions"], ["mat-stroked-button", "", 3, "click"], [1, "body-1-semibold"], ["mat-flat-button", "", "color", "primary", 1, "confirm-modal-actions-submit", 3, "click"]], template: function ConfirmModalComponent_Template(rf, ctx) {
|
|
81007
81040
|
if (rf & 1) {
|
|
81008
81041
|
const _r1 = \u0275\u0275getCurrentView();
|
|
81009
81042
|
\u0275\u0275declareLet(0);
|
|
81010
81043
|
\u0275\u0275elementStart(1, "div", 0)(2, "div", 1)(3, "h1", 2);
|
|
81011
81044
|
\u0275\u0275template(4, ConfirmModalComponent_Conditional_4_Template, 2, 0, "span", 3);
|
|
81012
81045
|
\u0275\u0275text(5);
|
|
81046
|
+
\u0275\u0275elementEnd()();
|
|
81047
|
+
\u0275\u0275elementStart(6, "div", 4);
|
|
81048
|
+
\u0275\u0275text(7);
|
|
81013
81049
|
\u0275\u0275elementEnd();
|
|
81014
|
-
\u0275\u0275elementStart(
|
|
81015
|
-
\u0275\u0275listener("click", function
|
|
81016
|
-
\u0275\u0275restoreView(_r1);
|
|
81017
|
-
return \u0275\u0275resetView(ctx.closeModal());
|
|
81018
|
-
});
|
|
81019
|
-
\u0275\u0275elementStart(7, "mat-icon", 5);
|
|
81020
|
-
\u0275\u0275text(8, "close");
|
|
81021
|
-
\u0275\u0275elementEnd()()();
|
|
81022
|
-
\u0275\u0275elementStart(9, "div", 6);
|
|
81023
|
-
\u0275\u0275text(10);
|
|
81024
|
-
\u0275\u0275elementEnd();
|
|
81025
|
-
\u0275\u0275elementStart(11, "div", 7)(12, "button", 8);
|
|
81026
|
-
\u0275\u0275listener("click", function ConfirmModalComponent_Template_button_click_12_listener() {
|
|
81050
|
+
\u0275\u0275elementStart(8, "div", 5)(9, "button", 6);
|
|
81051
|
+
\u0275\u0275listener("click", function ConfirmModalComponent_Template_button_click_9_listener() {
|
|
81027
81052
|
\u0275\u0275restoreView(_r1);
|
|
81028
81053
|
return \u0275\u0275resetView(ctx.closeModal());
|
|
81029
81054
|
});
|
|
81030
|
-
\u0275\u0275elementStart(
|
|
81031
|
-
\u0275\u0275text(
|
|
81032
|
-
\u0275\u0275pipe(
|
|
81055
|
+
\u0275\u0275elementStart(10, "span", 7);
|
|
81056
|
+
\u0275\u0275text(11);
|
|
81057
|
+
\u0275\u0275pipe(12, "translate");
|
|
81033
81058
|
\u0275\u0275elementEnd()();
|
|
81034
|
-
\u0275\u0275elementStart(
|
|
81035
|
-
\u0275\u0275listener("click", function
|
|
81059
|
+
\u0275\u0275elementStart(13, "button", 8);
|
|
81060
|
+
\u0275\u0275listener("click", function ConfirmModalComponent_Template_button_click_13_listener() {
|
|
81036
81061
|
\u0275\u0275restoreView(_r1);
|
|
81037
81062
|
return \u0275\u0275resetView(ctx.closeModal(true));
|
|
81038
81063
|
});
|
|
81039
|
-
\u0275\u0275elementStart(
|
|
81040
|
-
\u0275\u0275text(
|
|
81041
|
-
\u0275\u0275pipe(
|
|
81064
|
+
\u0275\u0275elementStart(14, "span", 7);
|
|
81065
|
+
\u0275\u0275text(15);
|
|
81066
|
+
\u0275\u0275pipe(16, "translate");
|
|
81042
81067
|
\u0275\u0275elementEnd()()()();
|
|
81043
81068
|
}
|
|
81044
81069
|
if (rf & 2) {
|
|
@@ -81047,23 +81072,23 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81047
81072
|
\u0275\u0275conditional(config_r2.icon ? 4 : -1);
|
|
81048
81073
|
\u0275\u0275advance();
|
|
81049
81074
|
\u0275\u0275textInterpolate1(" ", config_r2.title, " ");
|
|
81050
|
-
\u0275\u0275advance(
|
|
81075
|
+
\u0275\u0275advance(2);
|
|
81051
81076
|
\u0275\u0275textInterpolate(config_r2.text);
|
|
81052
81077
|
\u0275\u0275advance(4);
|
|
81053
|
-
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(
|
|
81078
|
+
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(12, 5, config_r2.cancelButton));
|
|
81054
81079
|
\u0275\u0275advance(4);
|
|
81055
|
-
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(
|
|
81080
|
+
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(16, 7, config_r2.confirmButton));
|
|
81056
81081
|
}
|
|
81057
|
-
}, dependencies: [MatButtonModule, MatButton, MatIconButton, MatIcon, TranslatePipe], styles: ['\n\n[_nghost-%COMP%] {\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}\nmat-icon[_ngcontent-%COMP%] {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1[_ngcontent-%COMP%] {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2[_ngcontent-%COMP%] {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3[_ngcontent-%COMP%] {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4[_ngcontent-%COMP%] {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular[_ngcontent-%COMP%] {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%], \np[_ngcontent-%COMP%] {\n margin: 0;\n}\n.grey[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-light-blue);\n}\n[_nghost-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 12px;\n height: 100%;\n padding: 12px;\n}\n[_nghost-%COMP%] .confirm-modal[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n flex: 1;\n gap: 16px;\n}\n[_nghost-%COMP%] .confirm-modal-header[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n[_nghost-%COMP%] .confirm-modal-header-title[_ngcontent-%COMP%] {\n font-size: 20px;\n color: var(--neutral-20);\n}\n[_nghost-%COMP%] .confirm-modal-header-icon[_ngcontent-%COMP%] {\n font-size: 14px;\n height: 20px;\n}\n[_nghost-%COMP%] .confirm-modal-actions[_ngcontent-%COMP%] {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n}\n[_nghost-%COMP%] .confirm-modal-actions-submit[_ngcontent-%COMP%] {\n background-color: #3778e4;\n color: white;\n}\n/*# sourceMappingURL=confirm-modal.component.css.map */'], changeDetection: 0 });
|
|
81082
|
+
}, dependencies: [MatButtonModule, MatButton, TranslatePipe], styles: ['\n\n[_nghost-%COMP%] {\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[_ngcontent-%COMP%] {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1[_ngcontent-%COMP%] {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2[_ngcontent-%COMP%] {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3[_ngcontent-%COMP%] {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4[_ngcontent-%COMP%] {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular[_ngcontent-%COMP%] {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%], \np[_ngcontent-%COMP%] {\n margin: 0;\n}\n.black[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-black);\n}\n.grey[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-light-blue);\n}\n.filling[_ngcontent-%COMP%] {\n height: 100%;\n overflow: hidden;\n}\n*[_ngcontent-%COMP%] {\n box-sizing: border-box;\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%] {\n margin: 0;\n}\n.filling[_ngcontent-%COMP%] {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-checked[_ngcontent-%COMP%], \n.filing[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-indeterminate[_ngcontent-%COMP%] {\n background: transparent !important;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox[_ngcontent-%COMP%] {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__background[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__checkmark[_ngcontent-%COMP%] {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__ripple[_ngcontent-%COMP%], \n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mat-ripple[_ngcontent-%COMP%] {\n display: none;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-label[_ngcontent-%COMP%] {\n padding-left: 8px;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-button__label[_ngcontent-%COMP%] {\n line-height: 10px;\n}\n[_nghost-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 12px;\n height: 100%;\n padding: 12px;\n}\n[_nghost-%COMP%] .confirm-modal[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n flex: 1;\n gap: 16px;\n}\n[_nghost-%COMP%] .confirm-modal-header[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n[_nghost-%COMP%] .confirm-modal-header-title[_ngcontent-%COMP%] {\n font-size: 20px;\n color: var(--neutral-20);\n}\n[_nghost-%COMP%] .confirm-modal-header-icon[_ngcontent-%COMP%] {\n font-size: 14px;\n height: 20px;\n}\n[_nghost-%COMP%] .confirm-modal-actions[_ngcontent-%COMP%] {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n}\n[_nghost-%COMP%] .confirm-modal-actions[_ngcontent-%COMP%] button[_ngcontent-%COMP%] {\n margin: 0;\n}\n[_nghost-%COMP%] .confirm-modal-actions-submit[_ngcontent-%COMP%] {\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 */'], changeDetection: 0 });
|
|
81058
81083
|
};
|
|
81059
81084
|
(() => {
|
|
81060
81085
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ConfirmModalComponent, [{
|
|
81061
81086
|
type: Component,
|
|
81062
|
-
args: [{ selector: "confirm-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, MatIcon, 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 }}\r\n </h1>\r\n\r\n <button mat-icon-button (click)="closeModal()">\r\n <mat-icon class="confirm-modal-header-icon">close</mat-icon>\r\n </button>\r\n </div>\r\n\r\n <div class="confirm-modal-text">{{ config.text }}</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 (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}\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.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 {\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-submit {\n background-color: #3778e4;\n color: white;\n}\n/*# sourceMappingURL=confirm-modal.component.css.map */\n'] }]
|
|
81087
|
+
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 }}\r\n </h1>\r\n </div>\r\n\r\n <div class="confirm-modal-text">{{ config.text }}</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'] }]
|
|
81063
81088
|
}], null, null);
|
|
81064
81089
|
})();
|
|
81065
81090
|
(() => {
|
|
81066
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ConfirmModalComponent, { className: "ConfirmModalComponent", filePath: "src/app/components/confirm-modal/confirm-modal.component.ts", lineNumber:
|
|
81091
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ConfirmModalComponent, { className: "ConfirmModalComponent", filePath: "src/app/components/confirm-modal/confirm-modal.component.ts", lineNumber: 24 });
|
|
81067
81092
|
})();
|
|
81068
81093
|
}
|
|
81069
81094
|
});
|
|
@@ -81531,7 +81556,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81531
81556
|
const registeredOffice = formData[InitialReturnFillingFormGroups.RegisteredOfficeAddress];
|
|
81532
81557
|
const certifiedBy = formData[InitialReturnFillingFormGroups.CertifiedBy];
|
|
81533
81558
|
const contact = formData[InitialReturnFillingFormGroups.Contact];
|
|
81534
|
-
const
|
|
81559
|
+
const mapAddress2 = (src) => ({
|
|
81535
81560
|
unitType: src?.[IRFormControls.UnitType] ?? null,
|
|
81536
81561
|
unitNumber: src?.[IRFormControls.UnitNumber] ?? null,
|
|
81537
81562
|
streetNumber: src?.[IRFormControls.StreetNumber] ?? null,
|
|
@@ -81543,7 +81568,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81543
81568
|
const id = item[IRFormControls.ID];
|
|
81544
81569
|
if (id) {
|
|
81545
81570
|
acc[id] = {
|
|
81546
|
-
address:
|
|
81571
|
+
address: mapAddress2(item),
|
|
81547
81572
|
residentCanadian: item[IRFormControls.IsCanadianResident] ?? false
|
|
81548
81573
|
};
|
|
81549
81574
|
}
|
|
@@ -81552,11 +81577,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81552
81577
|
return {
|
|
81553
81578
|
referenceNumber: generalInfo?.[IRFormControls.ClientMatterNumber] ?? null,
|
|
81554
81579
|
docketNumber: generalInfo?.[IRFormControls.Docket] ?? null,
|
|
81555
|
-
registeredOfficeAddress:
|
|
81580
|
+
registeredOfficeAddress: mapAddress2(registeredOffice),
|
|
81556
81581
|
directors: mapPersons(formData[InitialReturnFillingFormGroups.Directors]),
|
|
81557
81582
|
officers: mapPersons(formData[InitialReturnFillingFormGroups.Officers]),
|
|
81558
81583
|
certifiedBy: {
|
|
81559
|
-
address:
|
|
81584
|
+
address: mapAddress2(certifiedBy)
|
|
81560
81585
|
},
|
|
81561
81586
|
contactUid: contact?.[IRFormControls.Contact] ?? null
|
|
81562
81587
|
};
|
|
@@ -81567,13 +81592,15 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81567
81592
|
const refNumbers = formData[FormationFormGroups.ReferenceNumbers];
|
|
81568
81593
|
const legalOpinionData = formData[FormationFormGroups.LegalOpinion];
|
|
81569
81594
|
const registeredOffice = formData[FormationFormGroups.RegisteredOfficeAddress];
|
|
81570
|
-
|
|
81595
|
+
formData[FormationFormGroups.SharesAndRestrictions];
|
|
81571
81596
|
const contact = formData[FormationFormGroups.Contact];
|
|
81572
81597
|
const isNumbered = corpDetails?.[FormationFormControls.CorporationNameType] === ECoreIncorporationType.Numbered;
|
|
81573
81598
|
const data = {
|
|
81574
|
-
|
|
81599
|
+
referenceNumbers: {
|
|
81575
81600
|
referenceNumber: refNumbers?.[FormationFormControls.ClientMatterNumber] ?? null,
|
|
81576
|
-
docketNumber: refNumbers?.[FormationFormControls.DocketNumber] ?? null
|
|
81601
|
+
docketNumber: refNumbers?.[FormationFormControls.DocketNumber] ?? null
|
|
81602
|
+
},
|
|
81603
|
+
entityDetails: {
|
|
81577
81604
|
corporationNameType: corpDetails?.[FormationFormControls.CorporationNameType] ?? null,
|
|
81578
81605
|
legalIdentifier: isNumbered ? corpDetails?.[FormationFormControls.LegalEnding] : null,
|
|
81579
81606
|
corporationNameEnglish: corpDetails?.[FormationFormControls.ProposedCorporationNameEng] ?? null,
|
|
@@ -81625,18 +81652,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81625
81652
|
}
|
|
81626
81653
|
return acc;
|
|
81627
81654
|
}, {}),
|
|
81628
|
-
sharesRestrictions: {
|
|
81629
|
-
restrictionsOnBusiness: sharesAndRestrictions[FormationFormControls.RestrictionsOnBusiness],
|
|
81630
|
-
restrictionsOnShareClasses: sharesAndRestrictions[FormationFormControls.RestrictionsOnShareClasses],
|
|
81631
|
-
restrictionsOnShareRights: sharesAndRestrictions[FormationFormControls.RestrictionsOnShareRights],
|
|
81632
|
-
restrictionsOnShareTransfers: sharesAndRestrictions[FormationFormControls.RestrictionsOnShareTransfers],
|
|
81633
|
-
otherProvisions: sharesAndRestrictions[FormationFormControls.OtherProvisions]
|
|
81634
|
-
},
|
|
81635
81655
|
contactUid: contact[FormationFormControls.Contact] ?? null
|
|
81636
81656
|
};
|
|
81637
|
-
if (corpDetails[FormationFormControls.
|
|
81657
|
+
if (corpDetails[FormationFormControls.wasLegalOpinionObtained] && corpDetails[FormationFormControls.CorporationNameType] !== ECoreIncorporationType.Numbered) {
|
|
81638
81658
|
data.legalOpinion = {
|
|
81639
|
-
|
|
81659
|
+
wasLegalOpinionObtained: corpDetails?.[FormationFormControls.wasLegalOpinionObtained] ?? false,
|
|
81640
81660
|
lawyerSigning: legalOpinionData?.[FormationFormControls.LawyerSigningOpinion] ?? null,
|
|
81641
81661
|
address: {
|
|
81642
81662
|
unitType: legalOpinionData?.[FormationFormControls.UnitType] ?? null,
|
|
@@ -81665,8 +81685,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81665
81685
|
data: {
|
|
81666
81686
|
title: "You have unsaved changes",
|
|
81667
81687
|
text: "You have unsaved changes. Do you want to save before closing?",
|
|
81668
|
-
cancelButton: "
|
|
81669
|
-
confirmButton: "
|
|
81688
|
+
cancelButton: "No",
|
|
81689
|
+
confirmButton: "Yes"
|
|
81670
81690
|
},
|
|
81671
81691
|
panelClass: ["zero-padding-modal"],
|
|
81672
81692
|
width: "65rem"
|
|
@@ -81725,8 +81745,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81725
81745
|
"src/app/services/ontario/ontario-formation.service.ts"() {
|
|
81726
81746
|
init_core();
|
|
81727
81747
|
init_common_utils();
|
|
81728
|
-
init_transform_utils();
|
|
81729
|
-
init_address_utils();
|
|
81730
81748
|
init_core();
|
|
81731
81749
|
OntarioFormationService = class _OntarioFormationService {
|
|
81732
81750
|
config;
|
|
@@ -81734,23 +81752,14 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81734
81752
|
this.config = config2;
|
|
81735
81753
|
}
|
|
81736
81754
|
validate(_0, _1) {
|
|
81737
|
-
return __async(this, arguments, function* (signature,
|
|
81755
|
+
return __async(this, arguments, function* (signature, requestBody, opts = {}) {
|
|
81738
81756
|
if (!this.isFormationTask(signature.task)) {
|
|
81739
81757
|
throw new Error(`Expected Formation task, got: ${signature.task?._taskType}`);
|
|
81740
81758
|
}
|
|
81741
81759
|
ensureAuthInputs(signature);
|
|
81742
81760
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
81743
81761
|
const url = signature.proxyApiUrl;
|
|
81744
|
-
|
|
81745
|
-
try {
|
|
81746
|
-
const formationTask = signature.task;
|
|
81747
|
-
req = {
|
|
81748
|
-
Jurisdiction: CANProvinceToCode(formationTask.entity?._compliance?.home_jurisdiction) || "ON",
|
|
81749
|
-
Incorporation: formationTaskToECore(formationTask, deltaData)
|
|
81750
|
-
};
|
|
81751
|
-
} catch (e) {
|
|
81752
|
-
throw e;
|
|
81753
|
-
}
|
|
81762
|
+
const req = requestBody;
|
|
81754
81763
|
const resp = yield fetchWithJwtRetry(signature, () => postJson(fetchFn, url, signature.jwtToken, req, {
|
|
81755
81764
|
"x-target-url": `${this.config.ONAOI}api/Incorporation`,
|
|
81756
81765
|
Authorization: `Bearer ${signature.jwtToken}`,
|
|
@@ -81782,8 +81791,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81782
81791
|
return __async(this, arguments, function* (signature, serviceOrderId, opts = {}) {
|
|
81783
81792
|
ensureAuthInputs(signature);
|
|
81784
81793
|
if (!serviceOrderId) {
|
|
81785
|
-
|
|
81786
|
-
throw err;
|
|
81794
|
+
throw new Error("Missing serviceOrderId.");
|
|
81787
81795
|
}
|
|
81788
81796
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
81789
81797
|
const url = signature.proxyApiUrl;
|
|
@@ -81888,6 +81896,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81888
81896
|
var init_federal_form_enum = __esm({
|
|
81889
81897
|
"src/app/enums/federal-form.enum.ts"() {
|
|
81890
81898
|
(function(FederalFormationFormControl2) {
|
|
81899
|
+
FederalFormationFormControl2["Id"] = "id";
|
|
81891
81900
|
FederalFormationFormControl2["CountriesOfResidence"] = "countriesOfResidence";
|
|
81892
81901
|
FederalFormationFormControl2["CountriesOfCitizenship"] = "countriesOfCitizenship";
|
|
81893
81902
|
FederalFormationFormControl2["ProposedCorporateName"] = "proposedCorporateName";
|
|
@@ -82084,7 +82093,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82084
82093
|
});
|
|
82085
82094
|
|
|
82086
82095
|
// src/app/constants/common.constants.ts
|
|
82087
|
-
var NAICS_CODES;
|
|
82096
|
+
var NAICS_CODES, NAICS_CODE_DESCRIPTIONS;
|
|
82088
82097
|
var init_common_constants = __esm({
|
|
82089
82098
|
"src/app/constants/common.constants.ts"() {
|
|
82090
82099
|
init_common_enums();
|
|
@@ -82093,40 +82102,29 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82093
82102
|
{ value: NAICSCodes.AirTransportation, label: "[481] Air transportation" },
|
|
82094
82103
|
{ value: NAICSCodes.ScheduledAirTransportation, label: "[481110] Scheduled air transportation" },
|
|
82095
82104
|
{ value: NAICSCodes.NonScheduledAirTransportation, label: "[48121] Non-scheduled air transportation" },
|
|
82096
|
-
{
|
|
82097
|
-
value: NAICSCodes.NonScheduledCharteredAirTransportation,
|
|
82098
|
-
label: "[481214] Non-scheduled chartered air transportation"
|
|
82099
|
-
},
|
|
82105
|
+
{ value: NAICSCodes.NonScheduledCharteredAirTransportation, label: "[481214] Non-scheduled chartered air transportation" },
|
|
82100
82106
|
{ value: NAICSCodes.NonScheduledSpecialtyFlyingServices, label: "[481215] Non-scheduled specialty flying services" },
|
|
82101
82107
|
{ value: NAICSCodes.RailTransportation, label: "[48211] Rail transportation" },
|
|
82102
82108
|
{ value: NAICSCodes.ShortHaulFreightRailTransportation, label: "[482112] Short-haul freight rail transportation" },
|
|
82103
82109
|
{ value: NAICSCodes.MainlineFreightRailTransportation, label: "[482113] Mainline freight rail transportation" },
|
|
82104
82110
|
{ value: NAICSCodes.PassengerRailTransportation, label: "[482114] Passenger rail transportation" },
|
|
82105
82111
|
{ value: NAICSCodes.WaterTransportation, label: "[483] Water transportation" },
|
|
82106
|
-
{
|
|
82107
|
-
|
|
82108
|
-
|
|
82109
|
-
},
|
|
82110
|
-
{
|
|
82111
|
-
value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportationExceptByFerries,
|
|
82112
|
-
label: "[483115] Deep sea, coastal and Great Lakes water transportation (except by ferries)"
|
|
82113
|
-
},
|
|
82114
|
-
{
|
|
82115
|
-
value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportationByFerries,
|
|
82116
|
-
label: "[483116] Deep sea, coastal and Great Lakes water transportation by ferries"
|
|
82117
|
-
},
|
|
82112
|
+
{ value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportation, label: "[48311] Deep sea, coastal and Great Lakes water transportation" },
|
|
82113
|
+
{ value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportationExceptByFerries, label: "[483115] Deep sea, coastal and Great Lakes water transportation (except by ferries)" },
|
|
82114
|
+
{ value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportationByFerries, label: "[483116] Deep sea, coastal and Great Lakes water transportation by ferries" },
|
|
82118
82115
|
{ value: NAICSCodes.InlandWaterTransportation, label: "[48321] Inland water transportation" },
|
|
82119
|
-
{
|
|
82120
|
-
value: NAICSCodes.InlandWaterTransportationExceptByFerries,
|
|
82121
|
-
label: "[483213] Inland water transportation (except by ferries)"
|
|
82122
|
-
},
|
|
82116
|
+
{ value: NAICSCodes.InlandWaterTransportationExceptByFerries, label: "[483213] Inland water transportation (except by ferries)" },
|
|
82123
82117
|
{ value: NAICSCodes.InlandWaterTransportationByFerries, label: "[483214] Inland water transportation by ferries" }
|
|
82124
82118
|
];
|
|
82119
|
+
NAICS_CODE_DESCRIPTIONS = NAICS_CODES.reduce((acc, { value, label }) => {
|
|
82120
|
+
acc[value] = label.replace(/^\[\S+\]\s*/, "");
|
|
82121
|
+
return acc;
|
|
82122
|
+
}, {});
|
|
82125
82123
|
}
|
|
82126
82124
|
});
|
|
82127
82125
|
|
|
82128
82126
|
// src/app/constants/federal-formation-form.contants.ts
|
|
82129
|
-
var dynamicOptionsCache, FEDERAL_INCORPORATION_TYPE_OPTIONS, FEDERAL_INCORPORATION_ROLE_OPTIONS, FEDERAL_LEGAL_ENDING_OPTIONS, FEDERAL_SIGNIFICANT_CONTROL_TYPE_OPTIONS, FEDERAL_EXCLUSION_REASON_OPTIONS, FEDERAL_ISC_TYPE_OF_INTEREST_OPTIONS, FEDERAL_ISC_SHARE_HOLDING_METHOD_OPTIONS, FEDERAL_ISC_JOINT_HOLDING_TYPE_OPTIONS, FEDERAL_ISC_PERCENTAGE_INTEREST_OPTIONS, GENERATE_FEDERAL_FORMATION_FORM_INCORPORATION_DETAILS, FEDERAL_FORMATION_ARTICLES_OF_INCORPORATION, FEDERAL_FORMATION_FORM_DIRECTORS, FEDERAL_FORMATION_FORM_SIGNIFICANT_CONTROL, FEDERAL_FORMATION_FORM_ADDITIONAL_INFORMATION, generateFederalFormationFormContactControl, generateFederalFormationFormRegisteredOfficeAddressControl, generateFederalFormationFormInviteDirectorsToBeManagersControl,
|
|
82127
|
+
var dynamicOptionsCache, FEDERAL_INCORPORATION_TYPE_OPTIONS, FEDERAL_INCORPORATION_ROLE_OPTIONS, FEDERAL_LEGAL_ENDING_OPTIONS, FEDERAL_SIGNIFICANT_CONTROL_TYPE_OPTIONS, FEDERAL_EXCLUSION_REASON_OPTIONS, FEDERAL_ISC_TYPE_OF_INTEREST_OPTIONS, FEDERAL_ISC_SHARE_HOLDING_METHOD_OPTIONS, FEDERAL_ISC_JOINT_HOLDING_TYPE_OPTIONS, FEDERAL_ISC_PERCENTAGE_INTEREST_OPTIONS, GENERATE_FEDERAL_FORMATION_FORM_INCORPORATION_DETAILS, FEDERAL_FORMATION_ARTICLES_OF_INCORPORATION, FEDERAL_FORMATION_FORM_DIRECTORS, FEDERAL_FORMATION_FORM_SIGNIFICANT_CONTROL, FEDERAL_FORMATION_FORM_ADDITIONAL_INFORMATION, generateFederalFormationFormContactControl, generateFederalFormationFormRegisteredOfficeAddressControl, generateFederalFormationFormInviteDirectorsToBeManagersControl, federalFormationFormIndividualsWithSignificantControl, GENERATE_FEDERAL_FORMATION_FORM_EXTRA_PROVINCIAL_LICENSES, GENERATE_FEDERAL_FORMATION_FORM_SIGNATORY_CONTROL;
|
|
82130
82128
|
var init_federal_formation_form_contants = __esm({
|
|
82131
82129
|
"src/app/constants/federal-formation-form.contants.ts"() {
|
|
82132
82130
|
init_form_enums();
|
|
@@ -82439,7 +82437,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82439
82437
|
}
|
|
82440
82438
|
];
|
|
82441
82439
|
generateFederalFormationFormContactControl = (contacts) => {
|
|
82442
|
-
const contactsOptions = contacts.map((contact) => ({ label:
|
|
82440
|
+
const contactsOptions = contacts.map((contact) => ({ label: contact.participant._profile.name ?? "", value: contact._id }));
|
|
82443
82441
|
return [
|
|
82444
82442
|
{
|
|
82445
82443
|
type: FormType.Select,
|
|
@@ -82451,12 +82449,12 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82451
82449
|
},
|
|
82452
82450
|
{
|
|
82453
82451
|
type: FormType.Text,
|
|
82454
|
-
dynamicLabel: (form) => {
|
|
82452
|
+
dynamicLabel: (form, t) => {
|
|
82455
82453
|
const id = form.get(FederalFormationFormControl.Contact)?.value;
|
|
82456
82454
|
const contact = contacts.find((contact2) => contact2._id === id);
|
|
82457
82455
|
const email = contact?.participant?.communicationEmail ?? contact?.addresses?.[0]?.emails?.primary ?? "";
|
|
82458
82456
|
const phone = contact?.participant?.communicationPhone ?? contact?.addresses?.[0]?.contact_numbers?.primary ?? "";
|
|
82459
|
-
return `Contact Details: ${email
|
|
82457
|
+
return `Contact Details: ${getContactDetailsPreview(email, phone, t)}`;
|
|
82460
82458
|
},
|
|
82461
82459
|
formControlName: "",
|
|
82462
82460
|
required: false,
|
|
@@ -82508,82 +82506,86 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82508
82506
|
class: "span-12"
|
|
82509
82507
|
}
|
|
82510
82508
|
];
|
|
82511
|
-
|
|
82512
|
-
|
|
82513
|
-
|
|
82514
|
-
|
|
82515
|
-
|
|
82516
|
-
|
|
82517
|
-
|
|
82518
|
-
|
|
82519
|
-
|
|
82520
|
-
|
|
82521
|
-
|
|
82522
|
-
|
|
82523
|
-
|
|
82524
|
-
|
|
82525
|
-
|
|
82526
|
-
|
|
82527
|
-
|
|
82528
|
-
|
|
82529
|
-
|
|
82530
|
-
|
|
82531
|
-
|
|
82532
|
-
|
|
82533
|
-
|
|
82534
|
-
|
|
82535
|
-
|
|
82536
|
-
|
|
82537
|
-
|
|
82538
|
-
|
|
82539
|
-
|
|
82540
|
-
|
|
82541
|
-
|
|
82542
|
-
|
|
82543
|
-
|
|
82544
|
-
|
|
82545
|
-
|
|
82546
|
-
|
|
82547
|
-
form
|
|
82548
|
-
|
|
82549
|
-
|
|
82550
|
-
|
|
82551
|
-
|
|
82552
|
-
|
|
82553
|
-
|
|
82554
|
-
|
|
82555
|
-
|
|
82556
|
-
|
|
82557
|
-
|
|
82558
|
-
|
|
82559
|
-
|
|
82560
|
-
|
|
82561
|
-
|
|
82562
|
-
|
|
82563
|
-
|
|
82564
|
-
|
|
82565
|
-
|
|
82566
|
-
|
|
82567
|
-
|
|
82568
|
-
|
|
82569
|
-
|
|
82570
|
-
|
|
82571
|
-
|
|
82572
|
-
|
|
82573
|
-
|
|
82574
|
-
|
|
82575
|
-
|
|
82576
|
-
|
|
82577
|
-
|
|
82578
|
-
|
|
82579
|
-
|
|
82580
|
-
|
|
82581
|
-
|
|
82582
|
-
|
|
82583
|
-
|
|
82509
|
+
federalFormationFormIndividualsWithSignificantControl = (addressForServicesMap) => {
|
|
82510
|
+
return [
|
|
82511
|
+
{
|
|
82512
|
+
type: FormType.Text,
|
|
82513
|
+
dynamicLabel: (form) => `Date Of Birth: ${form.get(FederalFormationFormControl.DateOfBirth)?.value}`,
|
|
82514
|
+
formControlName: FederalFormationFormControl.DateOfBirth,
|
|
82515
|
+
class: "span-12"
|
|
82516
|
+
},
|
|
82517
|
+
{
|
|
82518
|
+
type: FormType.Text,
|
|
82519
|
+
dynamicLabel: (form) => `<span>Countries Of Citizenship: ${form.get(FederalFormationFormControl.CountriesOfCitizenship)?.value}</span> </br> <span>Countries Of Residence: ${form.get(FederalFormationFormControl.CountriesOfResidence)?.value}</span>`,
|
|
82520
|
+
formControlName: "",
|
|
82521
|
+
class: "span-12"
|
|
82522
|
+
},
|
|
82523
|
+
{
|
|
82524
|
+
type: FormType.Text,
|
|
82525
|
+
dynamicLabel: (form) => `Residential Address: ${getAddressPreview(form)}`,
|
|
82526
|
+
formControlName: FederalFormationFormControl.DateOfBirth,
|
|
82527
|
+
class: "span-12"
|
|
82528
|
+
},
|
|
82529
|
+
{
|
|
82530
|
+
type: FormType.Select,
|
|
82531
|
+
label: "Address For Service",
|
|
82532
|
+
formControlName: FederalFormationFormControl.AddressForService,
|
|
82533
|
+
dynamicOptions: (form) => {
|
|
82534
|
+
return addressForServicesMap.get(form.getRawValue()[FederalFormationFormControl.Id]) ?? [];
|
|
82535
|
+
},
|
|
82536
|
+
class: "span-12",
|
|
82537
|
+
required: true
|
|
82538
|
+
},
|
|
82539
|
+
{
|
|
82540
|
+
type: FormType.Select,
|
|
82541
|
+
label: "Type of Interest",
|
|
82542
|
+
formControlName: FederalFormationFormControl.ISCTypeOfInterest,
|
|
82543
|
+
options: FEDERAL_ISC_TYPE_OF_INTEREST_OPTIONS,
|
|
82544
|
+
required: true,
|
|
82545
|
+
onChange: (form) => {
|
|
82546
|
+
form.get(FederalFormationFormControl.ISCShareHoldingMethod)?.setValue("", { emitEvent: false });
|
|
82547
|
+
form.get(FederalFormationFormControl.ISCJointHoldingType)?.setValue("", { emitEvent: false });
|
|
82548
|
+
form.get(FederalFormationFormControl.ISCPercentageInterest)?.setValue("", { emitEvent: false });
|
|
82549
|
+
form.get(FederalFormationFormControl.ISCShareHoldingMethod)?.updateValueAndValidity({ emitEvent: false });
|
|
82550
|
+
form.get(FederalFormationFormControl.ISCJointHoldingType)?.updateValueAndValidity({ emitEvent: false });
|
|
82551
|
+
form.get(FederalFormationFormControl.ISCPercentageInterest)?.updateValueAndValidity({ emitEvent: false });
|
|
82552
|
+
}
|
|
82553
|
+
},
|
|
82554
|
+
{
|
|
82555
|
+
type: FormType.Select,
|
|
82556
|
+
label: "Directly or Indirectly Held",
|
|
82557
|
+
formControlName: FederalFormationFormControl.ISCShareHoldingMethod,
|
|
82558
|
+
options: FEDERAL_ISC_SHARE_HOLDING_METHOD_OPTIONS,
|
|
82559
|
+
required: true,
|
|
82560
|
+
isVisible: (form) => {
|
|
82561
|
+
const typeOfInterests = form.get(FederalFormationFormControl.ISCTypeOfInterest)?.value;
|
|
82562
|
+
return typeOfInterests && typeOfInterests !== ISCTypeOfInterest.ControlWithoutShares;
|
|
82563
|
+
}
|
|
82564
|
+
},
|
|
82565
|
+
{
|
|
82566
|
+
type: FormType.Select,
|
|
82567
|
+
label: "Individually, Jointly or In Concert",
|
|
82568
|
+
formControlName: FederalFormationFormControl.ISCJointHoldingType,
|
|
82569
|
+
options: FEDERAL_ISC_JOINT_HOLDING_TYPE_OPTIONS,
|
|
82570
|
+
required: true,
|
|
82571
|
+
isVisible: (form) => {
|
|
82572
|
+
const typeOfInterests = form.get(FederalFormationFormControl.ISCTypeOfInterest)?.value;
|
|
82573
|
+
return typeOfInterests && typeOfInterests !== ISCTypeOfInterest.ControlWithoutShares;
|
|
82574
|
+
}
|
|
82575
|
+
},
|
|
82576
|
+
{
|
|
82577
|
+
type: FormType.Select,
|
|
82578
|
+
label: "Percentage Interest",
|
|
82579
|
+
formControlName: FederalFormationFormControl.ISCPercentageInterest,
|
|
82580
|
+
options: FEDERAL_ISC_PERCENTAGE_INTEREST_OPTIONS,
|
|
82581
|
+
required: true,
|
|
82582
|
+
isVisible: (form) => {
|
|
82583
|
+
const typeOfInterests = form.get(FederalFormationFormControl.ISCTypeOfInterest)?.value;
|
|
82584
|
+
return typeOfInterests && typeOfInterests !== ISCTypeOfInterest.ControlWithoutShares;
|
|
82585
|
+
}
|
|
82584
82586
|
}
|
|
82585
|
-
|
|
82586
|
-
|
|
82587
|
+
];
|
|
82588
|
+
};
|
|
82587
82589
|
GENERATE_FEDERAL_FORMATION_FORM_EXTRA_PROVINCIAL_LICENSES = (addressMap, affiliationsMap) => {
|
|
82588
82590
|
return [
|
|
82589
82591
|
{
|
|
@@ -82632,7 +82634,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82632
82634
|
{
|
|
82633
82635
|
type: FormType.Select,
|
|
82634
82636
|
dynamicLabel: (form) => {
|
|
82635
|
-
return
|
|
82637
|
+
return `Address for Service in ${form.get(FormationFormControls.Province)?.value}`;
|
|
82636
82638
|
},
|
|
82637
82639
|
formControlName: FederalFormationFormControl.ServiceAddressUid,
|
|
82638
82640
|
isVisible: (form) => form.get(FederalFormationFormControl.UseDifferentAddressForService)?.value,
|
|
@@ -82813,7 +82815,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82813
82815
|
\u0275\u0275advance(2);
|
|
82814
82816
|
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(16, 8, ctx.dialogData.submitButton));
|
|
82815
82817
|
}
|
|
82816
|
-
}, dependencies: [MatButtonModule, MatButton, MatDialogModule, MatIconModule, TranslatePipe, MatCheckbox], styles: ['\n\n.filling[_ngcontent-%COMP%] {\n height: 100%;\n overflow: hidden;\n}\n*[_ngcontent-%COMP%] {\n box-sizing: border-box;\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%] {\n margin: 0;\n}\n.filling[_ngcontent-%COMP%] {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-checked[_ngcontent-%COMP%], \n.filing[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-indeterminate[_ngcontent-%COMP%] {\n background: transparent !important;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox[_ngcontent-%COMP%] {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__background[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__checkmark[_ngcontent-%COMP%] {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__ripple[_ngcontent-%COMP%], \n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mat-ripple[_ngcontent-%COMP%] {\n display: none;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-label[_ngcontent-%COMP%] {\n padding-left: 8px;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-button__label[_ngcontent-%COMP%] {\n line-height: 10px;\n}\n[_nghost-%COMP%] {\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}\nmat-icon[_ngcontent-%COMP%] {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1[_ngcontent-%COMP%] {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2[_ngcontent-%COMP%] {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3[_ngcontent-%COMP%] {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4[_ngcontent-%COMP%] {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular[_ngcontent-%COMP%] {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%], \np[_ngcontent-%COMP%] {\n margin: 0;\n}\n.grey[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-light-blue);\n}\n[_nghost-%COMP%] {\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[_nghost-%COMP%] .mat-primary .mat-pseudo-checkbox-checked, \n[_nghost-%COMP%] .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n[_nghost-%COMP%] .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[_nghost-%COMP%] .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[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple, \n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n[_nghost-%COMP%] .add-documents-modal[_ngcontent-%COMP%] {\n padding: 24px 0;\n border: 2px solid #ededed;\n border-radius: 16px;\n width: 100%;\n background: white;\n}\n[_nghost-%COMP%] .add-documents-modal-header[_ngcontent-%COMP%] {\n padding: 0 24px;\n}\n[_nghost-%COMP%] .add-documents-modal-list[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n max-height: 300px;\n overflow: auto;\n padding: 24px;\n}\n[_nghost-%COMP%] .add-documents-modal-list-item[_ngcontent-%COMP%] {\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[_nghost-%COMP%] .add-documents-modal-actions[_ngcontent-%COMP%] {\n display: flex;\n justify-content: flex-end;\n gap: 8px;\n padding-right: 16px;\n}\n .mat-mdc-dialog-surface {\n background: transparent !important;\n padding: 2px;\n min-width: 660px;\n}\n/*# sourceMappingURL=select-modal.component.css.map */'], changeDetection: 0 });
|
|
82818
|
+
}, dependencies: [MatButtonModule, MatButton, MatDialogModule, MatIconModule, TranslatePipe, MatCheckbox], styles: ['\n\n.filling[_ngcontent-%COMP%] {\n height: 100%;\n overflow: hidden;\n}\n*[_ngcontent-%COMP%] {\n box-sizing: border-box;\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%] {\n margin: 0;\n}\n.filling[_ngcontent-%COMP%] {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-checked[_ngcontent-%COMP%], \n.filing[_ngcontent-%COMP%] .mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-indeterminate[_ngcontent-%COMP%] {\n background: transparent !important;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox[_ngcontent-%COMP%] {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__background[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__checkmark[_ngcontent-%COMP%] {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-checkbox__ripple[_ngcontent-%COMP%], \n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mat-ripple[_ngcontent-%COMP%] {\n display: none;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-label[_ngcontent-%COMP%] {\n padding-left: 8px;\n}\n.filing[_ngcontent-%COMP%] .mat-mdc-checkbox[cardView][_ngcontent-%COMP%] .mdc-button__label[_ngcontent-%COMP%] {\n line-height: 10px;\n}\n[_nghost-%COMP%] {\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[_ngcontent-%COMP%] {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1[_ngcontent-%COMP%] {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2[_ngcontent-%COMP%] {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3[_ngcontent-%COMP%] {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4[_ngcontent-%COMP%] {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4[_ngcontent-%COMP%] {\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[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular[_ngcontent-%COMP%] {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold[_ngcontent-%COMP%] {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%], \np[_ngcontent-%COMP%] {\n margin: 0;\n}\n.black[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-black);\n}\n.grey[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue[_ngcontent-%COMP%] {\n color: var(--filing-modal-color-light-blue);\n}\n[_nghost-%COMP%] {\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[_nghost-%COMP%] .mat-primary .mat-pseudo-checkbox-checked, \n[_nghost-%COMP%] .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n[_nghost-%COMP%] .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[_nghost-%COMP%] .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[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple, \n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n[_nghost-%COMP%] .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n[_nghost-%COMP%] .add-documents-modal[_ngcontent-%COMP%] {\n padding: 24px 0;\n border: 2px solid #ededed;\n border-radius: 16px;\n width: 100%;\n background: white;\n}\n[_nghost-%COMP%] .add-documents-modal-header[_ngcontent-%COMP%] {\n padding: 0 24px;\n}\n[_nghost-%COMP%] .add-documents-modal-list[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n max-height: 300px;\n overflow: auto;\n padding: 24px;\n}\n[_nghost-%COMP%] .add-documents-modal-list-item[_ngcontent-%COMP%] {\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[_nghost-%COMP%] .add-documents-modal-actions[_ngcontent-%COMP%] {\n display: flex;\n justify-content: flex-end;\n gap: 8px;\n padding-right: 16px;\n}\n .mat-mdc-dialog-surface {\n background: transparent !important;\n padding: 2px;\n min-width: 660px;\n}\n/*# sourceMappingURL=select-modal.component.css.map */'], changeDetection: 0 });
|
|
82817
82819
|
};
|
|
82818
82820
|
(() => {
|
|
82819
82821
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(SelectModalComponent, [{
|
|
@@ -82851,7 +82853,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82851
82853
|
</div>\r
|
|
82852
82854
|
\r
|
|
82853
82855
|
</div>\r
|
|
82854
|
-
`, 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}\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.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'] }]
|
|
82856
|
+
`, 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'] }]
|
|
82855
82857
|
}], null, null);
|
|
82856
82858
|
})();
|
|
82857
82859
|
(() => {
|
|
@@ -83147,9 +83149,10 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83147
83149
|
[FederalFormationFormControl.UseDifferentMailingAddress]: new FormControl(delta?.registeredOfficeAddress?.useDifferentAddressForCorrespondence ?? false),
|
|
83148
83150
|
[FederalFormationFormControl.MailingAddress]: new FormControl(delta?.registeredOfficeAddress?.mailingAddressForCorrespondenceUid ?? null, requiredIfValue(FederalFormationFormControl.UseDifferentMailingAddress, true))
|
|
83149
83151
|
}, this.generateAddressFormGroup(findRegisteredOfficeAddress(task))));
|
|
83152
|
+
const invitedDirectorIds = Object.entries(delta?.directors ?? {}).filter(([, d]) => d.inviteForFullAccessManager).map(([id]) => id);
|
|
83150
83153
|
config2[FederalFormationFormGroups.InviteDirectorToBeFullAccessManager] = new FormGroup({
|
|
83151
|
-
[FederalFormationFormControl.InvitedDirectors]: new FormControl(
|
|
83152
|
-
[FederalFormationFormControl.ConsentToProvideTheAboveEmailAddresses]: new FormControl(false)
|
|
83154
|
+
[FederalFormationFormControl.InvitedDirectors]: new FormControl(invitedDirectorIds),
|
|
83155
|
+
[FederalFormationFormControl.ConsentToProvideTheAboveEmailAddresses]: new FormControl(delta?.consentToProvideDirectorEmailAddressesForFullAccessManager ?? false)
|
|
83153
83156
|
});
|
|
83154
83157
|
config2[FederalFormationFormGroups.Contact] = new FormGroup({
|
|
83155
83158
|
[FederalFormationFormControl.Contact]: new FormControl("", Validators.required)
|
|
@@ -83265,14 +83268,14 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83265
83268
|
}
|
|
83266
83269
|
if (rf & 2) {
|
|
83267
83270
|
const ctx_r0 = \u0275\u0275nextContext(2);
|
|
83268
|
-
\u0275\u0275property("documents", ctx_r0.documents())("selectedDocuments", ctx_r0.selectedDocuments());
|
|
83271
|
+
\u0275\u0275property("documents", ctx_r0.documents())("readonly", ctx_r0.isReadonly())("selectedDocuments", ctx_r0.selectedDocuments());
|
|
83269
83272
|
}
|
|
83270
83273
|
}
|
|
83271
83274
|
function FederalIncorporationFormComponent_Conditional_5_Template(rf, ctx) {
|
|
83272
83275
|
if (rf & 1) {
|
|
83273
83276
|
\u0275\u0275elementStart(0, "expandable-card", 4)(1, "div", 9);
|
|
83274
83277
|
\u0275\u0275element(2, "filing-form-group", 10);
|
|
83275
|
-
\u0275\u0275template(3, FederalIncorporationFormComponent_Conditional_5_Conditional_3_Template, 1,
|
|
83278
|
+
\u0275\u0275template(3, FederalIncorporationFormComponent_Conditional_5_Conditional_3_Template, 1, 3, "documents", 11);
|
|
83276
83279
|
\u0275\u0275elementEnd()();
|
|
83277
83280
|
}
|
|
83278
83281
|
if (rf & 2) {
|
|
@@ -83282,7 +83285,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83282
83285
|
\u0275\u0275advance(2);
|
|
83283
83286
|
\u0275\u0275property("isSubmitted", ctx_r0.isSubmitted())("form", corporateName_r3)("config", ctx_r0.incorporationFields);
|
|
83284
83287
|
\u0275\u0275advance();
|
|
83285
|
-
\u0275\u0275conditional(ctx_r0.isNonPreapprovedNameType() ? 3 : -1);
|
|
83288
|
+
\u0275\u0275conditional(ctx_r0.isNonPreapprovedNameType() || ctx_r0.selectedDocuments().length ? 3 : -1);
|
|
83286
83289
|
}
|
|
83287
83290
|
}
|
|
83288
83291
|
function FederalIncorporationFormComponent_Conditional_7_For_9_Template(rf, ctx) {
|
|
@@ -83476,7 +83479,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83476
83479
|
init_form_enums();
|
|
83477
83480
|
init_federal_form_helper();
|
|
83478
83481
|
init_expandable_list_card_component();
|
|
83479
|
-
init_transform_utils();
|
|
83480
83482
|
init_rxjs_interop();
|
|
83481
83483
|
init_common();
|
|
83482
83484
|
init_core();
|
|
@@ -83512,7 +83514,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83512
83514
|
articlesOfIncorporationFields = FEDERAL_FORMATION_ARTICLES_OF_INCORPORATION;
|
|
83513
83515
|
additionalInformationFields = FEDERAL_FORMATION_FORM_ADDITIONAL_INFORMATION;
|
|
83514
83516
|
significantControlFields = FEDERAL_FORMATION_FORM_SIGNIFICANT_CONTROL;
|
|
83515
|
-
individualsWithSignificantControlFields =
|
|
83517
|
+
individualsWithSignificantControlFields = [];
|
|
83516
83518
|
registeredOfficeAddressFields = [];
|
|
83517
83519
|
federalFormationFormInviteDirectorsToBeManagersControl = [];
|
|
83518
83520
|
contactControl = [];
|
|
@@ -83542,50 +83544,23 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83542
83544
|
const mailings = task.entity.addresses.filter((a) => a.location_type === "Mailing");
|
|
83543
83545
|
const mailingOptions = mailings.map((mailing) => ({ label: `${mailing.display?.line1}${mailing.display?.line2}`, value: mailing.uid }));
|
|
83544
83546
|
const contacts = task.entity.affiliations.filter((a) => a.role.role_name === "Contact");
|
|
83545
|
-
const registeredOfficeAddress = findRegisteredOfficeAddress(task);
|
|
83546
|
-
const registeredOfficeAddressOption = {
|
|
83547
|
-
label: `${registeredOfficeAddress?.display?.line1 ?? ""}${registeredOfficeAddress?.display?.line2 ?? ""}`,
|
|
83548
|
-
value: registeredOfficeAddress?.uid
|
|
83549
|
-
};
|
|
83550
83547
|
const eplRegistrations = getEPRegistrations(task);
|
|
83551
|
-
const eplAddressesMap = /* @__PURE__ */ new Map();
|
|
83552
|
-
const eplAffiliationsMap = /* @__PURE__ */ new Map();
|
|
83553
|
-
for (const registration of eplRegistrations) {
|
|
83554
|
-
const addressOptions = [];
|
|
83555
|
-
const affiliationsOptions = [];
|
|
83556
|
-
const affiliations = registration.affiliations;
|
|
83557
|
-
if (affiliations) {
|
|
83558
|
-
for (const affiliation of affiliations) {
|
|
83559
|
-
affiliationsOptions.push({
|
|
83560
|
-
label: getPersonName(affiliation.participant),
|
|
83561
|
-
value: affiliation._id
|
|
83562
|
-
});
|
|
83563
|
-
for (const address of affiliation.addresses) {
|
|
83564
|
-
const display = address.display;
|
|
83565
|
-
addressOptions.push({
|
|
83566
|
-
label: `${display?.line1 ?? ""} ${display?.line2 ?? ""}`,
|
|
83567
|
-
value: address.uid
|
|
83568
|
-
});
|
|
83569
|
-
}
|
|
83570
|
-
}
|
|
83571
|
-
}
|
|
83572
|
-
eplAddressesMap.set(registration.uid, [registeredOfficeAddressOption, ...addressOptions]);
|
|
83573
|
-
eplAffiliationsMap.set(registration.uid, affiliationsOptions);
|
|
83574
|
-
}
|
|
83575
83548
|
this.registeredOfficeAddressFields = generateFederalFormationFormRegisteredOfficeAddressControl(mailingOptions);
|
|
83576
|
-
this.extraProvincialLicensesFields =
|
|
83549
|
+
this.extraProvincialLicensesFields = this.generateEPLFields(eplRegistrations);
|
|
83577
83550
|
this.contactControl = generateFederalFormationFormContactControl(contacts);
|
|
83551
|
+
this.individualsWithSignificantControlFields = federalFormationFormIndividualsWithSignificantControl(this.generateISCAddressesMap(getIndividualWithSignificantControl(task.entity.affiliations)));
|
|
83578
83552
|
}
|
|
83579
83553
|
});
|
|
83580
83554
|
effect(() => {
|
|
83581
83555
|
const directors = (this.task()?.entity.affiliations ?? []).filter((a) => isPrincipalAffiliation2(a) && a.role?.role_name === "Director") ?? [];
|
|
83582
|
-
const directorOptions = directors.map((director) => ({ label: getPersonName(director.participant), value: director._id }));
|
|
83556
|
+
const directorOptions = directors.map((director) => ({ label: getPersonName(director.participant), value: director.participant._id }));
|
|
83583
83557
|
this.federalFormationFormInviteDirectorsToBeManagersControl = generateFederalFormationFormInviteDirectorsToBeManagersControl(directorOptions);
|
|
83584
83558
|
});
|
|
83585
83559
|
effect(() => {
|
|
83586
83560
|
const form = this.form();
|
|
83587
83561
|
if (form) {
|
|
83588
83562
|
const formRawValue = form.getRawValue();
|
|
83563
|
+
this.isNonPreapprovedNameType.set(formRawValue[this.groups.CorporateName]?.[this.controls.NameType] === NameType2.NonPreapproved);
|
|
83589
83564
|
const individualsWithSignificantControl = formRawValue[this.groups.IndividualsWithSignificantControl];
|
|
83590
83565
|
const selectedIndividualWithSignificant = individualsWithSignificantControl?.map((i) => i[this.controls.EntityName]) ?? [];
|
|
83591
83566
|
this.selectedIndividualWithSignificant.set(selectedIndividualWithSignificant);
|
|
@@ -83641,10 +83616,57 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83641
83616
|
return "";
|
|
83642
83617
|
}
|
|
83643
83618
|
if (articles.min_directors === articles.max_directors) {
|
|
83644
|
-
return `<span class="body-1-semibold">Number of Directors:</span> ${articles.min_directors}`;
|
|
83619
|
+
return `<span class="body-1-semibold black">Number of Directors:</span> ${articles.min_directors}`;
|
|
83620
|
+
}
|
|
83621
|
+
return `<span class="body-1-semibold black">Minimum and Maximum Number of Directors:</span> ${articles.min_directors}-${articles.max_directors}`;
|
|
83622
|
+
});
|
|
83623
|
+
generateEPLFields(registrations) {
|
|
83624
|
+
const eplAddressesMap = /* @__PURE__ */ new Map();
|
|
83625
|
+
const eplAffiliationsMap = /* @__PURE__ */ new Map();
|
|
83626
|
+
for (const registration of registrations) {
|
|
83627
|
+
const addressOptions = [];
|
|
83628
|
+
const affiliationsOptions = [];
|
|
83629
|
+
const affiliations = registration.affiliations;
|
|
83630
|
+
if (affiliations) {
|
|
83631
|
+
for (const affiliation of affiliations) {
|
|
83632
|
+
affiliationsOptions.push({
|
|
83633
|
+
label: getPersonName(affiliation.participant),
|
|
83634
|
+
value: affiliation._id
|
|
83635
|
+
});
|
|
83636
|
+
for (const address of affiliation.addresses) {
|
|
83637
|
+
const display = address.display;
|
|
83638
|
+
addressOptions.push({
|
|
83639
|
+
label: `${display?.line1 ?? ""} ${display?.line2 ?? ""}`,
|
|
83640
|
+
value: address.uid
|
|
83641
|
+
});
|
|
83642
|
+
}
|
|
83643
|
+
const registeredOfficeAddress = affiliation?.parent_affiliation?.addresses?.[0];
|
|
83644
|
+
if (registeredOfficeAddress) {
|
|
83645
|
+
const registeredOfficeAddressOption = {
|
|
83646
|
+
label: `${registeredOfficeAddress?.display?.line1 ?? ""}${registeredOfficeAddress?.display?.line2 ?? ""}`,
|
|
83647
|
+
value: registeredOfficeAddress?.uid
|
|
83648
|
+
};
|
|
83649
|
+
addressOptions.push(registeredOfficeAddressOption);
|
|
83650
|
+
}
|
|
83651
|
+
}
|
|
83652
|
+
}
|
|
83653
|
+
eplAddressesMap.set(registration.uid, addressOptions);
|
|
83654
|
+
eplAffiliationsMap.set(registration.uid, affiliationsOptions);
|
|
83645
83655
|
}
|
|
83646
|
-
return
|
|
83647
|
-
}
|
|
83656
|
+
return GENERATE_FEDERAL_FORMATION_FORM_EXTRA_PROVINCIAL_LICENSES(eplAddressesMap, eplAffiliationsMap);
|
|
83657
|
+
}
|
|
83658
|
+
generateISCAddressesMap(affiliations) {
|
|
83659
|
+
const map2 = /* @__PURE__ */ new Map();
|
|
83660
|
+
const individualsWithSignificantControl = getIndividualWithSignificantControl(affiliations);
|
|
83661
|
+
for (const individual of individualsWithSignificantControl) {
|
|
83662
|
+
const addressOptions = individual.addresses.map((address) => ({
|
|
83663
|
+
label: `${address.display?.line1 ?? ""} ${address.display?.line2 ?? ""}`.trim(),
|
|
83664
|
+
value: address.uid
|
|
83665
|
+
}));
|
|
83666
|
+
map2.set(individual._id, addressOptions);
|
|
83667
|
+
}
|
|
83668
|
+
return map2;
|
|
83669
|
+
}
|
|
83648
83670
|
getFormGroup(key) {
|
|
83649
83671
|
return this.form().get(key);
|
|
83650
83672
|
}
|
|
@@ -83654,7 +83676,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83654
83676
|
static \u0275fac = function FederalIncorporationFormComponent_Factory(__ngFactoryType__) {
|
|
83655
83677
|
return new (__ngFactoryType__ || _FederalIncorporationFormComponent)();
|
|
83656
83678
|
};
|
|
83657
|
-
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _FederalIncorporationFormComponent, selectors: [["federal-incorporation-form"]], inputs: { form: [1, "form"], isNote: [1, "isNote"], task: [1, "task"], errors: [1, "errors"], documents: [1, "documents"], selectedDocuments: [1, "selectedDocuments"], isStatusIcon: [1, "isStatusIcon"], isSubmitted: [1, "isSubmitted"], isReadonly: [1, "isReadonly"] }, outputs: { addDocuments: "addDocuments", removeDocument: "removeDocument" }, ngContentSelectors: _c015, decls: 22, vars: 19, consts: [[1, "incorporation-form"], ["title", "Entity changed", "content", "A new draft needs to be generated as the Entity was changed since the last draft was produced.", 3, "type"], ["title", "The following issues need to be resolved before proceeding:", 3, "content"], [1, "incorporation-form-content"], [3, "isValid", "isStatusIcon", "title"], [3, "isValid", "isSubmitted", "isOpen", "fields", "formArray", "title"], [3, "isValid", "title"], [3, "isOpen", "isValid", "isSubmitted", "isStatusIcon", "fields", "formArray", "title"], [3, "isStatusIcon", "isValid", "title"], [1, "incorporation-form-item"], [3, "isSubmitted", "form", "config"], [3, "documents", "selectedDocuments"], [3, "addDocuments", "removeDocument", "documents", "selectedDocuments"], [1, "body-1-regular", 3, "innerHTML"], [1, "body-1-semibold", "dark-blue"], [1, "incorporators-list"], [1, "body-1-regular", "grey"], [3, "isOpen", "isValid", "removable", "isSubmitted", "isStatusIcon", "fields", "formArray", "title"], [3, "remove", "isOpen", "isValid", "removable", "isSubmitted", "isStatusIcon", "fields", "formArray", "title"], ["slot", "subtitle", "mat-stroked-button", "", "mat-button", "", 3, "disabled"], ["slot", "header-content", 1, "significant-control"], ["slot", "subtitle", "mat-stroked-button", "", "mat-button", "", 3, "click", "disabled"], [1, "body-1-semibold"]], template: function FederalIncorporationFormComponent_Template(rf, ctx) {
|
|
83679
|
+
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _FederalIncorporationFormComponent, selectors: [["federal-incorporation-form"]], inputs: { form: [1, "form"], isNote: [1, "isNote"], task: [1, "task"], errors: [1, "errors"], documents: [1, "documents"], selectedDocuments: [1, "selectedDocuments"], isStatusIcon: [1, "isStatusIcon"], isSubmitted: [1, "isSubmitted"], isReadonly: [1, "isReadonly"] }, outputs: { addDocuments: "addDocuments", removeDocument: "removeDocument" }, ngContentSelectors: _c015, decls: 22, vars: 19, consts: [[1, "incorporation-form"], ["title", "Entity changed", "content", "A new draft needs to be generated as the Entity was changed since the last draft was produced.", 3, "type"], ["title", "The following issues need to be resolved before proceeding:", 3, "content"], [1, "incorporation-form-content"], [3, "isValid", "isStatusIcon", "title"], [3, "isValid", "isSubmitted", "isOpen", "fields", "formArray", "title"], [3, "isValid", "title"], [3, "isOpen", "isValid", "isSubmitted", "isStatusIcon", "fields", "formArray", "title"], [3, "isStatusIcon", "isValid", "title"], [1, "incorporation-form-item"], [3, "isSubmitted", "form", "config"], [3, "documents", "readonly", "selectedDocuments"], [3, "addDocuments", "removeDocument", "documents", "readonly", "selectedDocuments"], [1, "body-1-regular", "black", 3, "innerHTML"], [1, "body-1-semibold", "dark-blue"], [1, "incorporators-list"], [1, "body-1-regular", "grey"], [3, "isOpen", "isValid", "removable", "isSubmitted", "isStatusIcon", "fields", "formArray", "title"], [3, "remove", "isOpen", "isValid", "removable", "isSubmitted", "isStatusIcon", "fields", "formArray", "title"], ["slot", "subtitle", "mat-stroked-button", "", "mat-button", "", 3, "disabled"], ["slot", "header-content", 1, "significant-control"], ["slot", "subtitle", "mat-stroked-button", "", "mat-button", "", 3, "click", "disabled"], [1, "body-1-semibold"]], template: function FederalIncorporationFormComponent_Template(rf, ctx) {
|
|
83658
83680
|
if (rf & 1) {
|
|
83659
83681
|
\u0275\u0275projectionDef();
|
|
83660
83682
|
\u0275\u0275elementStart(0, "div", 0);
|
|
@@ -83762,9 +83784,10 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83762
83784
|
<div class="incorporation-form-item">\r
|
|
83763
83785
|
<filing-form-group [isSubmitted]="isSubmitted()" [form]="corporateName" [config]="incorporationFields"/>\r
|
|
83764
83786
|
\r
|
|
83765
|
-
@if (isNonPreapprovedNameType()) {\r
|
|
83787
|
+
@if (isNonPreapprovedNameType() || selectedDocuments().length) {\r
|
|
83766
83788
|
<documents\r
|
|
83767
83789
|
[documents]="documents()"\r
|
|
83790
|
+
[readonly]="isReadonly()"\r
|
|
83768
83791
|
[selectedDocuments]="selectedDocuments()"\r
|
|
83769
83792
|
(addDocuments)="addDocuments.emit($event)"\r
|
|
83770
83793
|
(removeDocument)="removeDocument.emit($event)"\r
|
|
@@ -83779,7 +83802,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83779
83802
|
@if (articlesOfIncorporation) {\r
|
|
83780
83803
|
<expandable-card [isValid]="!articlesOfIncorporation.invalid" [isStatusIcon]="isStatusIcon()" [title]="groups.ArticlesOfIncorporation">\r
|
|
83781
83804
|
<div class="incorporation-form-item">\r
|
|
83782
|
-
<span class="body-1-regular" [innerHTML]="directorsSubtitle()"></span>\r
|
|
83805
|
+
<span class="body-1-regular black" [innerHTML]="directorsSubtitle()"></span>\r
|
|
83783
83806
|
\r
|
|
83784
83807
|
<filing-form-group [isSubmitted]="isSubmitted()" [form]="articlesOfIncorporation" [config]="articlesOfIncorporationFields"/>\r
|
|
83785
83808
|
<div>\r
|
|
@@ -83865,7 +83888,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83865
83888
|
}], () => [], null);
|
|
83866
83889
|
})();
|
|
83867
83890
|
(() => {
|
|
83868
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FederalIncorporationFormComponent, { className: "FederalIncorporationFormComponent", filePath: "src/app/components/federal/incorporation/federal-incorporation-form/federal-incorporation-form.component.ts", lineNumber:
|
|
83891
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FederalIncorporationFormComponent, { className: "FederalIncorporationFormComponent", filePath: "src/app/components/federal/incorporation/federal-incorporation-form/federal-incorporation-form.component.ts", lineNumber: 71 });
|
|
83869
83892
|
})();
|
|
83870
83893
|
}
|
|
83871
83894
|
});
|
|
@@ -84653,11 +84676,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84653
84676
|
if (task) {
|
|
84654
84677
|
if (this.isFormationTask(task)) {
|
|
84655
84678
|
this.deltaForm.set(new FormGroup(FederalFormHelper.generateConfig(task)));
|
|
84656
|
-
this.initialDeltaValue.set(this.generateFederalFormationDeltaData());
|
|
84679
|
+
this.initialDeltaValue.set(untracked2(() => this.generateFederalFormationDeltaData()));
|
|
84657
84680
|
}
|
|
84658
84681
|
if (isUpdateMaintain(task)) {
|
|
84659
84682
|
this.umDeltaForm.set(new FormGroup({}));
|
|
84660
|
-
this.umInitialDeltaValue.set(this.generateFederalUpdateMaintainDeltaData());
|
|
84683
|
+
this.umInitialDeltaValue.set(untracked2(() => this.generateFederalUpdateMaintainDeltaData()));
|
|
84661
84684
|
}
|
|
84662
84685
|
}
|
|
84663
84686
|
});
|
|
@@ -84732,17 +84755,18 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84732
84755
|
const registeredOfficeData = formData[FederalFormationFormGroups.RegisteredOfficeAddress] ?? {};
|
|
84733
84756
|
const directorsData = formData[FederalFormationFormGroups.Directors] ?? [];
|
|
84734
84757
|
const inviteDirectorsData = formData[FederalFormationFormGroups.InviteDirectorToBeFullAccessManager] ?? {};
|
|
84735
|
-
const invitedDirectorIds = inviteDirectorsData[FederalFormationFormControl.InvitedDirectors] ?? [];
|
|
84758
|
+
const invitedDirectorIds = new Set(inviteDirectorsData[FederalFormationFormControl.InvitedDirectors] ?? []);
|
|
84736
84759
|
const significantControlData = formData[FederalFormationFormGroups.SignificantControl] ?? {};
|
|
84737
84760
|
const iscIndividualsData = formData[FederalFormationFormGroups.IndividualsWithSignificantControl] ?? [];
|
|
84738
84761
|
const eplData = formData[FederalFormationFormGroups.ExtraProvincialRegistrations] ?? [];
|
|
84739
84762
|
const contactData = formData[FederalFormationFormGroups.Contact] ?? {};
|
|
84763
|
+
const consentToProvideDirectorEmailAddressesForFullAccessManager = inviteDirectorsData[FederalFormationFormControl.ConsentToProvideTheAboveEmailAddresses];
|
|
84740
84764
|
const directors = {};
|
|
84741
84765
|
for (const director of directorsData) {
|
|
84742
84766
|
const id = director.id;
|
|
84743
84767
|
directors[id] = {
|
|
84744
84768
|
residentCanadian: director[FederalFormationFormControl.IsCanadianResident] ?? false,
|
|
84745
|
-
|
|
84769
|
+
inviteForFullAccessManager: invitedDirectorIds.has(id)
|
|
84746
84770
|
};
|
|
84747
84771
|
}
|
|
84748
84772
|
const extraProvincialLicenses = {};
|
|
@@ -84752,45 +84776,52 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84752
84776
|
businessActivity: epl[FederalFormationFormControl.BusinessActivities],
|
|
84753
84777
|
principalOfficeAddressUid: epl[FederalFormationFormControl.PrincipalOfficeInOntario],
|
|
84754
84778
|
serviceAddressUid: epl[FederalFormationFormControl.UseDifferentAddressForService] ? epl[FederalFormationFormControl.ServiceAddressUid] : null,
|
|
84779
|
+
contactUid: epl[FederalFormationFormControl.ContactInOntario],
|
|
84755
84780
|
chiefManagerUid: epl[FederalFormationFormControl.ChiefOfficerManagerInOntario],
|
|
84756
84781
|
signatoryUid: epl[FederalFormationFormControl.PersonAuthorizingTheFiling],
|
|
84757
84782
|
signatoryRole: epl[FederalFormationFormControl.Role]
|
|
84758
84783
|
};
|
|
84759
84784
|
}
|
|
84785
|
+
const nonPreapproved = corporateNameData[FederalFormationFormControl.NameType] === NameType2.NonPreapproved;
|
|
84786
|
+
const supportingDocuments = [...this.selectedDocuments() ?? []];
|
|
84760
84787
|
return {
|
|
84761
|
-
corporateName: {
|
|
84788
|
+
corporateName: __spreadValues({
|
|
84762
84789
|
nameType: corporateNameData[FederalFormationFormControl.NameType],
|
|
84763
|
-
primaryNameReservationNumber: corporateNameData[FederalFormationFormControl.PrimaryNuansReportReservation]
|
|
84764
|
-
primaryNameReservationDate: corporateNameData[FederalFormationFormControl.PrimaryReservationDate]
|
|
84765
|
-
secondaryNameReservationNumber: corporateNameData[FederalFormationFormControl.SecondaryReservationNumber]
|
|
84766
|
-
secondaryNameReservationDate: corporateNameData[FederalFormationFormControl.SecondaryReservationDate]
|
|
84767
|
-
legalElement: corporateNameData[FederalFormationFormControl.LegalElement]
|
|
84768
|
-
preapprovalRequestId: corporateNameData[FederalFormationFormControl.NamePreapprovalRequestId]
|
|
84769
|
-
preapprovalConfirmationNumber: corporateNameData[FederalFormationFormControl.NamePreapprovalConfirmationNumber]
|
|
84770
|
-
|
|
84771
|
-
|
|
84772
|
-
|
|
84773
|
-
|
|
84774
|
-
|
|
84775
|
-
|
|
84776
|
-
|
|
84790
|
+
primaryNameReservationNumber: corporateNameData[FederalFormationFormControl.PrimaryNuansReportReservation],
|
|
84791
|
+
primaryNameReservationDate: corporateNameData[FederalFormationFormControl.PrimaryReservationDate],
|
|
84792
|
+
secondaryNameReservationNumber: corporateNameData[FederalFormationFormControl.SecondaryReservationNumber],
|
|
84793
|
+
secondaryNameReservationDate: corporateNameData[FederalFormationFormControl.SecondaryReservationDate],
|
|
84794
|
+
legalElement: corporateNameData[FederalFormationFormControl.LegalElement],
|
|
84795
|
+
preapprovalRequestId: corporateNameData[FederalFormationFormControl.NamePreapprovalRequestId],
|
|
84796
|
+
preapprovalConfirmationNumber: corporateNameData[FederalFormationFormControl.NamePreapprovalConfirmationNumber]
|
|
84797
|
+
}, nonPreapproved ? {
|
|
84798
|
+
supportingDocuments,
|
|
84799
|
+
businessActivity: corporateNameData[FederalFormationFormControl.BusinessActivities],
|
|
84800
|
+
locationOfOperations: corporateNameData[FederalFormationFormControl.LocationTerritory],
|
|
84801
|
+
typeOfClientele: corporateNameData[FederalFormationFormControl.ClienteleMarketType],
|
|
84802
|
+
originOfKeyword: corporateNameData[FederalFormationFormControl.KeywordOrigin],
|
|
84803
|
+
similarNamesSearchedOrRegistered: corporateNameData[FederalFormationFormControl.SimilarNamesSearchedOrRegistered]
|
|
84804
|
+
} : {}),
|
|
84777
84805
|
registeredOfficeAddress: {
|
|
84778
84806
|
useDifferentAddressForCorrespondence: !!registeredOfficeData[FederalFormationFormControl.UseDifferentMailingAddress],
|
|
84779
|
-
mailingAddressForCorrespondenceUid: registeredOfficeData[FederalFormationFormControl.MailingAddress]
|
|
84807
|
+
mailingAddressForCorrespondenceUid: registeredOfficeData[FederalFormationFormControl.MailingAddress]
|
|
84780
84808
|
},
|
|
84781
84809
|
directors,
|
|
84782
84810
|
individualsWithSignificantControl: {
|
|
84783
84811
|
type: significantControlData[FederalFormationFormControl.SignificantControlType],
|
|
84784
|
-
exclusionReason: significantControlData[FederalFormationFormControl.SignificantControlType] === ISCOptions.Excluded ? significantControlData[FederalFormationFormControl.ExclusionReason]
|
|
84785
|
-
individuals: significantControlData[FederalFormationFormControl.SignificantControlType] === ISCOptions.ListISC ? iscIndividualsData.map((isc) =>
|
|
84786
|
-
|
|
84787
|
-
|
|
84788
|
-
|
|
84789
|
-
|
|
84790
|
-
|
|
84791
|
-
|
|
84812
|
+
exclusionReason: significantControlData[FederalFormationFormControl.SignificantControlType] === ISCOptions.Excluded ? significantControlData[FederalFormationFormControl.ExclusionReason] : void 0,
|
|
84813
|
+
individuals: significantControlData[FederalFormationFormControl.SignificantControlType] === ISCOptions.ListISC ? iscIndividualsData.map((isc) => {
|
|
84814
|
+
return {
|
|
84815
|
+
affiliationId: isc[FormationFormControls.Id],
|
|
84816
|
+
typeOfInterest: isc[FederalFormationFormControl.ISCTypeOfInterest],
|
|
84817
|
+
shareHoldingMethod: isc[FederalFormationFormControl.ISCShareHoldingMethod],
|
|
84818
|
+
jointHoldingType: isc[FederalFormationFormControl.ISCJointHoldingType],
|
|
84819
|
+
percentageInterest: isc[FederalFormationFormControl.ISCPercentageInterest],
|
|
84820
|
+
addressForService: isc[FederalFormationFormControl.AddressForService]
|
|
84821
|
+
};
|
|
84822
|
+
}) : void 0
|
|
84792
84823
|
},
|
|
84793
|
-
consentToProvideDirectorEmailAddressesForFullAccessManager
|
|
84824
|
+
consentToProvideDirectorEmailAddressesForFullAccessManager,
|
|
84794
84825
|
extraProvincialLicenses,
|
|
84795
84826
|
contactUid: contactData[FederalFormationFormControl.Contact]
|
|
84796
84827
|
};
|
|
@@ -84806,8 +84837,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84806
84837
|
data: {
|
|
84807
84838
|
title: "You have unsaved changes",
|
|
84808
84839
|
text: "You have unsaved changes. Do you want to save before closing?",
|
|
84809
|
-
cancelButton: "
|
|
84810
|
-
confirmButton: "
|
|
84840
|
+
cancelButton: "No",
|
|
84841
|
+
confirmButton: "Yes"
|
|
84811
84842
|
},
|
|
84812
84843
|
panelClass: ["zero-padding-modal"],
|
|
84813
84844
|
width: "65rem"
|
|
@@ -84858,26 +84889,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84858
84889
|
});
|
|
84859
84890
|
|
|
84860
84891
|
// src/app/services/federal/federal-formation.service.ts
|
|
84861
|
-
function createCoverLetter2(officialBusinessEmail, termsAndConditions) {
|
|
84862
|
-
return {
|
|
84863
|
-
FirstName: termsAndConditions?.firstName || "",
|
|
84864
|
-
LastName: termsAndConditions?.lastName || "",
|
|
84865
|
-
Email: officialBusinessEmail || "",
|
|
84866
|
-
ContactPhone: {
|
|
84867
|
-
CountryCode: "1",
|
|
84868
|
-
AreaCode: "000",
|
|
84869
|
-
PhoneNumber: "0000000"
|
|
84870
|
-
}
|
|
84871
|
-
};
|
|
84872
|
-
}
|
|
84873
84892
|
var FederalFormationService;
|
|
84874
84893
|
var init_federal_formation_service = __esm({
|
|
84875
84894
|
"src/app/services/federal/federal-formation.service.ts"() {
|
|
84876
84895
|
init_core();
|
|
84877
84896
|
init_common_utils();
|
|
84878
|
-
init_transform_utils();
|
|
84879
|
-
init_ECoreInterfaces();
|
|
84880
|
-
init_address_utils();
|
|
84881
84897
|
init_core();
|
|
84882
84898
|
FederalFormationService = class _FederalFormationService {
|
|
84883
84899
|
config;
|
|
@@ -84885,24 +84901,18 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84885
84901
|
this.config = config2;
|
|
84886
84902
|
}
|
|
84887
84903
|
validate(_0, _1) {
|
|
84888
|
-
return __async(this, arguments, function* (signature,
|
|
84904
|
+
return __async(this, arguments, function* (signature, requestBody, opts = {}) {
|
|
84889
84905
|
if (!this.isFormationTask(signature.task)) {
|
|
84890
84906
|
throw new Error(`Expected Formation task, got: ${signature.task?._taskType}`);
|
|
84891
84907
|
}
|
|
84892
84908
|
ensureAuthInputs(signature);
|
|
84893
84909
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
84894
84910
|
const url = signature.proxyApiUrl;
|
|
84895
|
-
|
|
84896
|
-
try {
|
|
84897
|
-
const formationTask = signature.task;
|
|
84898
|
-
req = {
|
|
84899
|
-
Jurisdiction: "CD",
|
|
84900
|
-
Incorporation: this.formationTaskToECore(formationTask, deltaData)
|
|
84901
|
-
};
|
|
84902
|
-
} catch (e) {
|
|
84903
|
-
throw e;
|
|
84904
|
-
}
|
|
84911
|
+
const req = requestBody;
|
|
84905
84912
|
const resp = yield fetchWithJwtRetry(signature, () => postJson(fetchFn, url, signature.jwtToken, req, {
|
|
84913
|
+
"ApiKey": "a759101c-aeac-4fa6-90dc-8b56f01b2939",
|
|
84914
|
+
Authorization: `Bearer ${signature.jwtToken}`,
|
|
84915
|
+
"AccountKey": "1c3e3a6e-2a8b-4dd2-b906-aec25a1a7227",
|
|
84906
84916
|
"x-target-url": `${this.config.ONAOI}api/Incorporation`,
|
|
84907
84917
|
"x-access-token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtaWNoZWwubGF2b2llQGF0aGVubmlhbi5jb20iLCJzdWIiOiI2N2RkY2IwNWRjNDAzMjg0ZTdmYTA3ZmIiLCJpYXQiOjE3NzAyMTI2OTQsImV4cCI6MTc3MDIxOTg5NCwiYmlkIjoiIiwiYXV0IjoidHJ1ZSIsIm9yZyI6Imh0dHBzOi8vb2xpdmUtMS50ZXN0LmF0aGVubmlhbi5jb20iLCJwZXIiOiIifQ.0QsFPBVGTA8JyacfEDx4qz5XVQB3AeL2-uCBiCs9qF0",
|
|
84908
84918
|
Cookie: "AWSALB=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53; AWSALBCORS=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53"
|
|
@@ -84931,14 +84941,15 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84931
84941
|
return __async(this, arguments, function* (signature, serviceOrderId, opts = {}) {
|
|
84932
84942
|
ensureAuthInputs(signature);
|
|
84933
84943
|
if (!serviceOrderId) {
|
|
84934
|
-
|
|
84935
|
-
throw err;
|
|
84944
|
+
throw new Error("Missing serviceOrderId.");
|
|
84936
84945
|
}
|
|
84937
84946
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
84938
84947
|
const url = signature.proxyApiUrl;
|
|
84939
84948
|
const resp = yield fetchWithJwtRetry(signature, () => fetchFn(url, {
|
|
84940
84949
|
method: "POST",
|
|
84941
84950
|
headers: {
|
|
84951
|
+
// 'ApiKey': 'a759101c-aeac-4fa6-90dc-8b56f01b2939',
|
|
84952
|
+
// 'AccountKey': '1c3e3a6e-2a8b-4dd2-b906-aec25a1a7227',
|
|
84942
84953
|
Authorization: `Bearer ${signature.jwtToken}`,
|
|
84943
84954
|
Cookie: "AWSALB=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53; AWSALBCORS=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53",
|
|
84944
84955
|
"x-target-url": `${this.config.ONAOI}api/Incorporation/${encodeURIComponent(serviceOrderId)}/submit`,
|
|
@@ -84985,190 +84996,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84985
84996
|
return payload;
|
|
84986
84997
|
});
|
|
84987
84998
|
}
|
|
84988
|
-
formationTaskToECore(task, deltaData) {
|
|
84989
|
-
const corporateName = deltaData.corporateName;
|
|
84990
|
-
const significantControl = deltaData.individualsWithSignificantControl;
|
|
84991
|
-
const isNumbered = task._ext._numbered_company === true;
|
|
84992
|
-
const incorporationType = isNumbered ? ECoreIncorporationType.Numbered : ECoreIncorporationType.NamedEnglish;
|
|
84993
|
-
const englishName = !isNumbered ? {
|
|
84994
|
-
CorporationName: task.entity._profile.name || "",
|
|
84995
|
-
ReservationDate: corporateName?.primaryNameReservationDate || "",
|
|
84996
|
-
ReservationNumber: corporateName?.primaryNameReservationNumber || ""
|
|
84997
|
-
} : void 0;
|
|
84998
|
-
const frenchName = !isNumbered && task.entity._profile.secondary_name ? {
|
|
84999
|
-
CorporationName: task.entity._profile.secondary_name || "",
|
|
85000
|
-
ReservationDate: corporateName?.secondaryNameReservationDate || "",
|
|
85001
|
-
ReservationNumber: corporateName?.secondaryNameReservationNumber || ""
|
|
85002
|
-
} : void 0;
|
|
85003
|
-
const legalEnding = corporateName?.legalElement;
|
|
85004
|
-
const mailingAddressUid = deltaData.registeredOfficeAddress?.mailingAddressForCorrespondenceUid;
|
|
85005
|
-
const mailingAddress = task.entity.addresses.find((address) => address.uid === mailingAddressUid);
|
|
85006
|
-
const registeredOfficeAddress = findRegisteredOfficeAddress(task);
|
|
85007
|
-
const directors = task.entity.affiliations.filter((aff) => aff.kind === "PrincipalAffiliationV3" && aff.role.role_name === DirectorRole.DIRECTOR);
|
|
85008
|
-
const incorporators = task._ext._incorporators ?? [];
|
|
85009
|
-
task._ext._future_filing_date ? new Date(task._ext._future_filing_date).toISOString().split("T")[0] : (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
85010
|
-
const officialBusinessEmail = registeredOfficeAddress?.communications?.find((c) => c.type === "Business Email")?.value;
|
|
85011
|
-
const mailings = task.entity.addresses.filter((a) => a.location_type === "Mailing");
|
|
85012
|
-
mailings.find((mailing) => mailing.uid === mailingAddressUid);
|
|
85013
|
-
task.entity.affiliations.find((a) => a._id === deltaData.contactUid);
|
|
85014
|
-
getEPRegistrations(task);
|
|
85015
|
-
deltaData.extraProvincialLicenses;
|
|
85016
|
-
deltaData.directors;
|
|
85017
|
-
deltaData.individualsWithSignificantControl;
|
|
85018
|
-
deltaData.consentToProvideDirectorEmailAddressesForFullAccessManager;
|
|
85019
|
-
console.log(deltaData);
|
|
85020
|
-
const eCorePayload = {
|
|
85021
|
-
IncorporationType: incorporationType,
|
|
85022
|
-
LegalEnding: legalEnding,
|
|
85023
|
-
EnglishName: englishName,
|
|
85024
|
-
FrenchName: frenchName,
|
|
85025
|
-
RegisteredOffice: registeredOfficeAddress ? transformAddress(registeredOfficeAddress) : void 0,
|
|
85026
|
-
MailingAddress: mailingAddress ? transformAddress(mailingAddress) : void 0,
|
|
85027
|
-
Directors: directors,
|
|
85028
|
-
Incorporators: incorporators,
|
|
85029
|
-
CoverLetter: createCoverLetter2(officialBusinessEmail),
|
|
85030
|
-
DirectorNumberType: ECoreDirectorNumberType.Range,
|
|
85031
|
-
// if task.entity._articles?.min_directors === task.entity._articles?.max_directors ? fixed : range
|
|
85032
|
-
MinimumNumberOfDirectors: task.entity._articles?.min_directors,
|
|
85033
|
-
MaximumNumberOfDirectors: task.entity._articles?.max_directors,
|
|
85034
|
-
SignificantControlType: significantControl?.type,
|
|
85035
|
-
ExclusionReason: significantControl?.exclusionReason ?? 0,
|
|
85036
|
-
RestrictionsOnShareClasses: task.entity._articles?.share_terms || "",
|
|
85037
|
-
RestrictionsOnShareRights: task.entity._articles?.share_restrictions_text || "None",
|
|
85038
|
-
RestrictionsOnShareTransfers: task.entity._articles?.transfer_restrictions_text || "None",
|
|
85039
|
-
"OtherProvisions": "Some text.",
|
|
85040
|
-
"EffectiveType": 2,
|
|
85041
|
-
"EffectiveDate": "2025-11-13",
|
|
85042
|
-
"SignatureFirstName": "Pierre",
|
|
85043
|
-
"SignatureLastName": "Jacques",
|
|
85044
|
-
"OfficerPhoneNumber": "123-456-7890",
|
|
85045
|
-
"HasEPL": 0
|
|
85046
|
-
// OtherProvisions: task.entity._articles?.other_provisions || 'None',
|
|
85047
|
-
// EffectiveType: determineEffectiveType(requestedDate),
|
|
85048
|
-
// EffectiveDate: requestedDate,
|
|
85049
|
-
// SignatureFirstName: termsAndConditions?.firstName!,
|
|
85050
|
-
// SignatureLastName: termsAndConditions?.lastName!,
|
|
85051
|
-
// OfficialEmail: officialBusinessEmail || 'testemail@gmail.com',
|
|
85052
|
-
// NAICSCode: naicsData.code,
|
|
85053
|
-
// PrimaryActivity: naicsData.description,
|
|
85054
|
-
// Authorization: true,
|
|
85055
|
-
};
|
|
85056
|
-
console.log(eCorePayload);
|
|
85057
|
-
return eCorePayload;
|
|
85058
|
-
}
|
|
85059
|
-
transformDirector(affiliation, deltaData, consentToProvideEmails) {
|
|
85060
|
-
const address = affiliation.addresses[0] || affiliation.parent_affiliation?.addresses?.[0];
|
|
85061
|
-
return {
|
|
85062
|
-
FirstName: affiliation.participant._profile.firstName,
|
|
85063
|
-
MiddleName: affiliation.participant._profile.middleName,
|
|
85064
|
-
LastName: affiliation.participant._profile.lastName,
|
|
85065
|
-
IsResident: deltaData.residentCanadian ? 1 : 2,
|
|
85066
|
-
Address: address ? this.transformAddress(address) : void 0,
|
|
85067
|
-
RequiresFullAccessManagerInvitation: deltaData.inviteForFullAcessManager,
|
|
85068
|
-
FullAccessManagerInvitationEmail: affiliation.participant.communicationEmail,
|
|
85069
|
-
FullAccessManagerEmailConsent: consentToProvideEmails
|
|
85070
|
-
};
|
|
85071
|
-
}
|
|
85072
|
-
transformIndividualWithSignificantControl(affiliation, deltaData) {
|
|
85073
|
-
const address = affiliation.addresses[0] || affiliation.parent_affiliation?.addresses?.[0];
|
|
85074
|
-
return {
|
|
85075
|
-
_description: 'Source: The UI will prompt for Individuals with Significant Control (ISC), allowing the user to select from relevant affiliations. "affiliation" below refers to the selected affiliation object for the ISC. address is from affiliation.addresses[0] or affiliation.parent_affiliation?.addresses?.[0]. serviceAddress is selected on the UI and stored in deltaData.individualsWithSignificantControl[id].serviceAddressUid. Locale determined by countryToCountryCode(address.country).',
|
|
85076
|
-
FirstName: affiliation.participant._profile.firstName,
|
|
85077
|
-
MiddleName: affiliation.participant._profile.middleName,
|
|
85078
|
-
LastName: affiliation.participant._profile.lastName,
|
|
85079
|
-
DateOfBirth: affiliation.participant._profile.date_of_birth,
|
|
85080
|
-
CountriesOfCitizenship: affiliation.participant?._profile?.["citizenships"]?.map((c) => normalizeCountryCode(c)),
|
|
85081
|
-
CountriesOfResidence: normalizeCountryCode(affiliation.participant?._profile?.tax_residency?.country),
|
|
85082
|
-
Address: this.transformAddress(address),
|
|
85083
|
-
// ServiceAddress: this.transformAddress(serviceAddress),
|
|
85084
|
-
TypeOfInterest: deltaData.typeOfInterest,
|
|
85085
|
-
ShareHoldingMethod: deltaData.shareHoldingMethod,
|
|
85086
|
-
JointHoldingType: deltaData.jointHoldingType,
|
|
85087
|
-
PercentageInterest: deltaData.percentageInterest
|
|
85088
|
-
};
|
|
85089
|
-
}
|
|
85090
|
-
transformIncorporator(incorporator) {
|
|
85091
|
-
const isIndividual = incorporator.type === "person";
|
|
85092
|
-
const incorporationType = isIndividual ? ECoreIncorporatorType.Individual : ECoreIncorporatorType.BodyCorporate;
|
|
85093
|
-
return {
|
|
85094
|
-
IncorporatorType: incorporationType,
|
|
85095
|
-
FirstName: isIndividual ? incorporator.firstName : void 0,
|
|
85096
|
-
MiddleName: isIndividual ? incorporator.middleName : void 0,
|
|
85097
|
-
LastName: isIndividual ? incorporator.lastName : void 0,
|
|
85098
|
-
BodyCorporate: !isIndividual ? incorporator.incorporator_name : void 0,
|
|
85099
|
-
Signature: `${incorporator.signatory_first_name} ${incorporator.signatory_last_name}, ${incorporator.signatory_title}`,
|
|
85100
|
-
// Only for BodyCorporate
|
|
85101
|
-
Address: this.transformAddress(incorporator)
|
|
85102
|
-
};
|
|
85103
|
-
}
|
|
85104
|
-
transformAddress(address) {
|
|
85105
|
-
const country = normalizeCountryCode(address?.country ?? "");
|
|
85106
|
-
const provinceState = country === "CA" ? CANCodeToProvince(address?.province_state) : country === "US" ? USCodeToState(address?.province_state) : address?.province_state ?? "";
|
|
85107
|
-
const addressRegion = country === "CA" ? CANProvinceToCode(provinceState) : country === "US" ? USStateToCode(provinceState) : provinceState;
|
|
85108
|
-
return {
|
|
85109
|
-
CareOf: address?.components?.find((c) => c.name === "Attention")?.value || "",
|
|
85110
|
-
StreetNumber: address?.components?.find((c) => c.name === "Street Number Only")?.value || "",
|
|
85111
|
-
StreetName: address?.components?.find((c) => c.name === "Street Only")?.value || "",
|
|
85112
|
-
UnitNumber: address?.components?.find((c) => c.name === "Suite/Apartment")?.value || "",
|
|
85113
|
-
AddressLine2: "",
|
|
85114
|
-
DeliveryCode: "",
|
|
85115
|
-
City: address?.city ?? "",
|
|
85116
|
-
ProvinceState: addressRegion,
|
|
85117
|
-
Code: address?.postal_zip ?? "",
|
|
85118
|
-
Country: normalizeCountryCode(address?.country)
|
|
85119
|
-
};
|
|
85120
|
-
}
|
|
85121
|
-
transformEPL(registration, deltaData) {
|
|
85122
|
-
const registeredOffice = [
|
|
85123
|
-
...registration.affiliations ?? []
|
|
85124
|
-
].find((aff) => aff.role.role_name === "Shared Address" && aff.role.static_title === "Registered Office");
|
|
85125
|
-
const registeredOfficeAddress = registeredOffice?.addresses?.[0] || registeredOffice?.parent_affiliation?.addresses?.[0];
|
|
85126
|
-
const operating = [
|
|
85127
|
-
...registration.affiliations ?? []
|
|
85128
|
-
].find((aff) => aff.role.role_name === "Shared Address" && aff.role.static_title === "Operating Address");
|
|
85129
|
-
const operatingAddress = operating?.addresses?.[0] || operating?.parent_affiliation?.addresses?.[0];
|
|
85130
|
-
const chiefManager = [
|
|
85131
|
-
...registration.affiliations ?? []
|
|
85132
|
-
].find((affiliation) => affiliation._id === deltaData.chiefManagerUid);
|
|
85133
|
-
const chiefManagerAddress = chiefManager?.addresses?.[0] || chiefManager?.parent_affiliation?.addresses?.[0];
|
|
85134
|
-
const signatoryManager = [
|
|
85135
|
-
...registration.affiliations ?? []
|
|
85136
|
-
].find((affiliation) => affiliation._id === deltaData.signatoryUid);
|
|
85137
|
-
return {
|
|
85138
|
-
Jurisdiction: registration._compliance.home_jurisdiction,
|
|
85139
|
-
epFiling: {
|
|
85140
|
-
EffectiveDate: registration.registration_date,
|
|
85141
|
-
Language: '""',
|
|
85142
|
-
// SM: This field will be removed from the payload.
|
|
85143
|
-
RegOffice: {
|
|
85144
|
-
Address: __spreadValues({}, registeredOfficeAddress ? this.transformAddress(registeredOfficeAddress) : {})
|
|
85145
|
-
},
|
|
85146
|
-
OperatingAddress: {
|
|
85147
|
-
Address: operatingAddress ? this.transformAddress(operatingAddress) : {}
|
|
85148
|
-
},
|
|
85149
|
-
ChiefManager: {
|
|
85150
|
-
FirstName: chiefManager?.participant._profile.firstName,
|
|
85151
|
-
MiddleName: chiefManager?.participant._profile.middleName,
|
|
85152
|
-
LastName: chiefManager?.participant._profile.lastName,
|
|
85153
|
-
EffectiveDate: chiefManager?.start_date,
|
|
85154
|
-
PhoneNumber: chiefManager?.participant.communicationPhone,
|
|
85155
|
-
Office: {
|
|
85156
|
-
Address: chiefManagerAddress ? this.transformAddress(chiefManagerAddress) : {}
|
|
85157
|
-
},
|
|
85158
|
-
AddressEffectiveDate: chiefManagerAddress?.effective_date
|
|
85159
|
-
},
|
|
85160
|
-
Signatory: {
|
|
85161
|
-
FirstName: signatoryManager?.participant._profile.firstName,
|
|
85162
|
-
MiddleName: signatoryManager?.participant._profile.middleName,
|
|
85163
|
-
LastName: signatoryManager?.participant._profile.lastName,
|
|
85164
|
-
SigningTitle: deltaData.signatoryRole
|
|
85165
|
-
},
|
|
85166
|
-
OfficialEmail: registeredOfficeAddress?.communications?.find((c) => c.type === "Business Email")?.value,
|
|
85167
|
-
NAICSCode: deltaData.businessActivity,
|
|
85168
|
-
PrimaryActivity: deltaData.businessActivity
|
|
85169
|
-
}
|
|
85170
|
-
};
|
|
85171
|
-
}
|
|
85172
84999
|
static \u0275fac = function FederalFormationService_Factory(__ngFactoryType__) {
|
|
85173
85000
|
return new (__ngFactoryType__ || _FederalFormationService)();
|
|
85174
85001
|
};
|
|
@@ -85185,79 +85012,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85185
85012
|
}
|
|
85186
85013
|
});
|
|
85187
85014
|
|
|
85188
|
-
// src/app/entities/InitialReturnMapping.ts
|
|
85189
|
-
var OFFICER_TITLE_TO_ECORE_POSITION_CODE, ECORE_POSITION_CODE_TO_POSITION_NAME;
|
|
85190
|
-
var init_InitialReturnMapping = __esm({
|
|
85191
|
-
"src/app/entities/InitialReturnMapping.ts"() {
|
|
85192
|
-
OFFICER_TITLE_TO_ECORE_POSITION_CODE = {
|
|
85193
|
-
Chairman: "CHRM",
|
|
85194
|
-
President: "PRCH",
|
|
85195
|
-
"Vice-President": "VP",
|
|
85196
|
-
"Chief Executive Officer": "CEO",
|
|
85197
|
-
"Chief Financial Officer": "CFO",
|
|
85198
|
-
"Chief Technology Officer": "CIO",
|
|
85199
|
-
"Chief Investment Officer": "CIO",
|
|
85200
|
-
"Executive Director": "EDIR",
|
|
85201
|
-
"Managing Director": "MDIR",
|
|
85202
|
-
"Assistant Secretary": "ASEC",
|
|
85203
|
-
"General Manager": "GM",
|
|
85204
|
-
Secretary: "SECT",
|
|
85205
|
-
Treasurer: "TRES",
|
|
85206
|
-
"Assistant Treasurer": "ATRE",
|
|
85207
|
-
"Authorized Signing Officer": "ASO",
|
|
85208
|
-
Chair: "CHR",
|
|
85209
|
-
"Chair Person": "CHRP",
|
|
85210
|
-
Chairwoman: "CHRW",
|
|
85211
|
-
"Chief Administrative Officer": "CAO",
|
|
85212
|
-
"Chief Information Officer": "CIO",
|
|
85213
|
-
"Chief Manager": "CMAN",
|
|
85214
|
-
"Chief Operating Officer": "COO",
|
|
85215
|
-
Comptroller: "COMP",
|
|
85216
|
-
"Vice-Chair": "VCHR",
|
|
85217
|
-
Other: "OTH"
|
|
85218
|
-
};
|
|
85219
|
-
ECORE_POSITION_CODE_TO_POSITION_NAME = {
|
|
85220
|
-
ASEC: "ASSISTANT SECRETARY",
|
|
85221
|
-
ATRE: "ASSISTANT TREASURER",
|
|
85222
|
-
ASO: "AUTH'D SIGNING OFFICER",
|
|
85223
|
-
CHR: "CHAIR",
|
|
85224
|
-
CHRM: "CHAIRMAN",
|
|
85225
|
-
CHRP: "CHAIR PERSON",
|
|
85226
|
-
CHRW: "CHAIRWOMAN",
|
|
85227
|
-
CAO: "CHIEF ADMIN OFFICER",
|
|
85228
|
-
CEO: "CHIEF EXECUTIVE OFFICER",
|
|
85229
|
-
CFO: "CHIEF FINANCIAL OFFICER",
|
|
85230
|
-
CIO: "CHIEF INFO OFFICER",
|
|
85231
|
-
CMAN: "CHIEF MANAGER",
|
|
85232
|
-
COO: "CHIEF OPERATING OFFICER",
|
|
85233
|
-
COMP: "COMPTROLLER",
|
|
85234
|
-
EDIR: "EXECUTIVE DIRECTOR",
|
|
85235
|
-
GM: "GENERAL MANAGER",
|
|
85236
|
-
MDIR: "MANAGING DIRECTOR",
|
|
85237
|
-
OTH: "OTHER",
|
|
85238
|
-
PRCH: "PRESIDENT",
|
|
85239
|
-
SECT: "SECRETARY",
|
|
85240
|
-
TRES: "TREASURER",
|
|
85241
|
-
VCHR: "VICE-CHAIR",
|
|
85242
|
-
VP: "VICE-PRESIDENT"
|
|
85243
|
-
};
|
|
85244
|
-
}
|
|
85245
|
-
});
|
|
85246
|
-
|
|
85247
85015
|
// src/app/services/ontario/ontario-update-maintain.service.ts
|
|
85248
85016
|
var OntarioUpdateMaintainService;
|
|
85249
85017
|
var init_ontario_update_maintain_service = __esm({
|
|
85250
85018
|
"src/app/services/ontario/ontario-update-maintain.service.ts"() {
|
|
85251
85019
|
init_core();
|
|
85252
85020
|
init_common_enums();
|
|
85253
|
-
init_common_models();
|
|
85254
85021
|
init_common_utils();
|
|
85255
|
-
init_address_utils();
|
|
85256
|
-
init_ECoreInterfaces();
|
|
85257
|
-
init_initial_return_enums();
|
|
85258
|
-
init_ontario_update_maintain_helper();
|
|
85259
|
-
init_InitialReturnMapping();
|
|
85260
|
-
init_app_enums();
|
|
85261
85022
|
init_core();
|
|
85262
85023
|
OntarioUpdateMaintainService = class _OntarioUpdateMaintainService {
|
|
85263
85024
|
config;
|
|
@@ -85278,46 +85039,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85278
85039
|
return ECoreGenericFilingFormType.InitialReturn;
|
|
85279
85040
|
}
|
|
85280
85041
|
}
|
|
85281
|
-
/**
|
|
85282
|
-
* Returns the key used under Filing.Form in the eCore payload.
|
|
85283
|
-
* - Initial Return → 'InitialReturn'
|
|
85284
|
-
* - Notice of Change → 'NoticeOfChange'
|
|
85285
|
-
* - Annual Compliance → 'AnnualReturn'
|
|
85286
|
-
*/
|
|
85287
|
-
static getFilingFormKey(task) {
|
|
85288
|
-
switch (task._taskType) {
|
|
85289
|
-
case TaskType.AnnualCompliance:
|
|
85290
|
-
return "AnnualReturn";
|
|
85291
|
-
case TaskType.InitialReturn:
|
|
85292
|
-
default:
|
|
85293
|
-
return "InitialReturn";
|
|
85294
|
-
}
|
|
85295
|
-
}
|
|
85296
|
-
/**
|
|
85297
|
-
* Returns the inner ECoreFilingFormType used inside Filing.Form.<key>.FilingFormType.
|
|
85298
|
-
* - Initial Return → ECoreFilingFormType.InitialReturn (6)
|
|
85299
|
-
* - Notice of Change → ECoreFilingFormType.NoticeOfChange (7)
|
|
85300
|
-
* - Annual Compliance → ECoreFilingFormType.AnnualReturn (8)
|
|
85301
|
-
*/
|
|
85302
|
-
static getECoreFilingFormType(task) {
|
|
85303
|
-
switch (task._taskType) {
|
|
85304
|
-
case TaskType.NoticeOfChange:
|
|
85305
|
-
return ECoreFilingFormType.NoticeOfChange;
|
|
85306
|
-
case TaskType.AnnualCompliance:
|
|
85307
|
-
return ECoreFilingFormType.AnnualReturn;
|
|
85308
|
-
case TaskType.InitialReturn:
|
|
85309
|
-
default:
|
|
85310
|
-
return ECoreFilingFormType.InitialReturn;
|
|
85311
|
-
}
|
|
85312
|
-
}
|
|
85313
85042
|
setConfig(config2) {
|
|
85314
85043
|
this.config = config2;
|
|
85315
85044
|
}
|
|
85316
85045
|
validateCurrentData(signature, opts) {
|
|
85317
85046
|
return __async(this, null, function* () {
|
|
85318
85047
|
if (!isUpdateMaintain(signature.task)) {
|
|
85319
|
-
|
|
85320
|
-
throw err;
|
|
85048
|
+
throw new Error(`submitInitialReturnValidationToECore: task is not InitialReturn (${signature.task?._taskType})`);
|
|
85321
85049
|
}
|
|
85322
85050
|
const fetchFn = opts?.fetchImpl ?? fetch;
|
|
85323
85051
|
const CorporationInformation = {
|
|
@@ -85385,365 +85113,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85385
85113
|
return data.AnnualReturnFiling?.CorporationInfo || data.InitialReturnNoticeOfChangeFiling?.CorporationInfo || null;
|
|
85386
85114
|
});
|
|
85387
85115
|
}
|
|
85388
|
-
submitInitialReturnValidationToECore(signature,
|
|
85116
|
+
submitInitialReturnValidationToECore(signature, requestBody, opts) {
|
|
85389
85117
|
return __async(this, null, function* () {
|
|
85390
85118
|
if (!isUpdateMaintain(signature.task)) {
|
|
85391
85119
|
throw new Error(`submitInitialReturnValidationToECore: task is not InitialReturn (${signature.task?._taskType})`);
|
|
85392
85120
|
}
|
|
85393
|
-
const task = signature.task;
|
|
85394
|
-
const getEmail = (aff) => aff.participant?.communications?.find((c) => c.type.toLowerCase().includes("email"))?.value ?? "";
|
|
85395
|
-
const buildPostalAddress = (entityAddress, deltaAddr) => {
|
|
85396
|
-
const country = normalizeCountryCode(entityAddress?.country ?? "");
|
|
85397
|
-
const province = entityAddress?.province_state ?? "";
|
|
85398
|
-
const Region = country === "CA" ? CANProvinceToCode(province) : country === "US" ? USStateToCode(province) : province;
|
|
85399
|
-
const streetOnly = getAddressComponent(entityAddress, "Street Only");
|
|
85400
|
-
const { StreetName, StreetType: StreetType2, StreetDirection: StreetDirection2 } = parseStreetAddress(streetOnly);
|
|
85401
|
-
const streetNumber = deltaAddr?.streetNumber ?? getAddressComponent(entityAddress, "Street Number Only") ?? "";
|
|
85402
|
-
const streetName = deltaAddr?.streetName ?? StreetName ?? "";
|
|
85403
|
-
const streetType = deltaAddr?.streetType ?? StreetType2 ?? null;
|
|
85404
|
-
const streetDir = deltaAddr?.streetDirection ?? (StreetDirection2 ? StreetDirection2 : null);
|
|
85405
|
-
const unitType = deltaAddr?.unitType ?? null;
|
|
85406
|
-
const unitNumber = deltaAddr?.unitNumber ?? getAddressComponent(entityAddress, "Suite/Apartment") ?? null;
|
|
85407
|
-
const careOf = getAddressComponent(entityAddress, "Attention") || entityAddress?.attention || "";
|
|
85408
|
-
const AddressLocale = country === "CA" ? "CA" : country === "US" ? "US" : "INTL";
|
|
85409
|
-
return {
|
|
85410
|
-
AddressLocale,
|
|
85411
|
-
AddressCA: AddressLocale === "CA" ? {
|
|
85412
|
-
AddressStandardLot: "standard",
|
|
85413
|
-
CityTown: entityAddress?.city,
|
|
85414
|
-
PostCode: entityAddress?.postal_zip,
|
|
85415
|
-
Suite: unitNumber ?? null,
|
|
85416
|
-
Address1: streetNumber,
|
|
85417
|
-
Address2: streetName,
|
|
85418
|
-
Address3: unitNumber ?? "",
|
|
85419
|
-
CountryCode: country,
|
|
85420
|
-
Region,
|
|
85421
|
-
RegionName: Region,
|
|
85422
|
-
CareOf: careOf,
|
|
85423
|
-
StreetNumberSuffix: "",
|
|
85424
|
-
StreetType: streetType.toString(),
|
|
85425
|
-
StreetDirection: streetDir,
|
|
85426
|
-
UnitType: unitType
|
|
85427
|
-
} : null,
|
|
85428
|
-
AddressUS: AddressLocale === "US" ? {
|
|
85429
|
-
PostCode: entityAddress?.postal_zip,
|
|
85430
|
-
CountryCode: country,
|
|
85431
|
-
Region,
|
|
85432
|
-
RegionName: Region,
|
|
85433
|
-
Address1: streetNumber,
|
|
85434
|
-
Address2: streetName,
|
|
85435
|
-
Address3: unitNumber ?? "",
|
|
85436
|
-
CityTown: entityAddress?.city
|
|
85437
|
-
} : null,
|
|
85438
|
-
AddressINTL: AddressLocale === "INTL" ? {
|
|
85439
|
-
AddressStandardLot: "standard",
|
|
85440
|
-
Region,
|
|
85441
|
-
RegionName: Region,
|
|
85442
|
-
Suite: unitNumber,
|
|
85443
|
-
PostCode: entityAddress?.postal_zip,
|
|
85444
|
-
CountryCode: country,
|
|
85445
|
-
CountryCodeName: entityAddress?.country || country,
|
|
85446
|
-
Address1: streetNumber,
|
|
85447
|
-
Address2: streetName,
|
|
85448
|
-
Address3: unitNumber ?? "",
|
|
85449
|
-
CityTown: entityAddress?.city
|
|
85450
|
-
} : null
|
|
85451
|
-
};
|
|
85452
|
-
};
|
|
85453
|
-
const buildPersonPayload = (aff, currentState, deltaEntry, isOfficer = false) => {
|
|
85454
|
-
const profile = aff.participant?._profile ?? {};
|
|
85455
|
-
const firstName = profile.firstName ?? "";
|
|
85456
|
-
const middleName = profile.middleName ?? "";
|
|
85457
|
-
const lastName = profile.lastName ?? "";
|
|
85458
|
-
const email = getEmail(aff);
|
|
85459
|
-
const electedDate = toYyyyMmDd(new Date(aff.start_date)) ?? "";
|
|
85460
|
-
const ceaseDate = toYyyyMmDd(aff.end_date) ?? "";
|
|
85461
|
-
const residentCanadian = String(deltaEntry?.residentCanadian ?? false);
|
|
85462
|
-
const entityAddr = aff.addresses?.at(0) || aff.parent_affiliation?.addresses?.at(0);
|
|
85463
|
-
const PostalAddress = buildPostalAddress(entityAddr, deltaEntry?.address);
|
|
85464
|
-
const PersonName = { FirstName: firstName, MiddleName: middleName, LastName: lastName };
|
|
85465
|
-
const position = isOfficer ? OFFICER_TITLE_TO_ECORE_POSITION_CODE[aff.role?.static_title ?? ""] ?? "" : "Director";
|
|
85466
|
-
const positionName = ECORE_POSITION_CODE_TO_POSITION_NAME[position] ?? "Director";
|
|
85467
|
-
if (!isOfficer) {
|
|
85468
|
-
switch (currentState) {
|
|
85469
|
-
case IRCurrentState.Added:
|
|
85470
|
-
return {
|
|
85471
|
-
Id: 5,
|
|
85472
|
-
CeaseDate: "",
|
|
85473
|
-
CeasedAppointedRoles: [{
|
|
85474
|
-
Id: aff._id,
|
|
85475
|
-
Position: position,
|
|
85476
|
-
PositionFullName: positionName,
|
|
85477
|
-
AppointedDate: electedDate
|
|
85478
|
-
}],
|
|
85479
|
-
ElectedDate: electedDate,
|
|
85480
|
-
EmailAddress: email,
|
|
85481
|
-
IsDirector: true,
|
|
85482
|
-
PersonName: __spreadProps(__spreadValues({}, PersonName), { Position: null }),
|
|
85483
|
-
OfficerPosition: "",
|
|
85484
|
-
OfficerPositionName: "",
|
|
85485
|
-
OfficerPositionSpecified: false,
|
|
85486
|
-
PostalAddress,
|
|
85487
|
-
ResidentCanadian: residentCanadian,
|
|
85488
|
-
IsInvalid: false,
|
|
85489
|
-
CurrentState: currentState
|
|
85490
|
-
};
|
|
85491
|
-
case IRCurrentState.Ceased:
|
|
85492
|
-
return {
|
|
85493
|
-
OfficerPosition: 0,
|
|
85494
|
-
OfficerPositionSpecified: false,
|
|
85495
|
-
OfficerId: null,
|
|
85496
|
-
CeasedAppointedRoles: [{
|
|
85497
|
-
State: IRCurrentState.Added,
|
|
85498
|
-
StateName: "Changed",
|
|
85499
|
-
Position: null,
|
|
85500
|
-
PositionFullName: "Director",
|
|
85501
|
-
CeasedDate: ceaseDate,
|
|
85502
|
-
AppointedDate: electedDate,
|
|
85503
|
-
AppointedDateSpecified: true,
|
|
85504
|
-
EditAppointedDate: false
|
|
85505
|
-
}],
|
|
85506
|
-
CurrentState: currentState,
|
|
85507
|
-
CurrentStateName: "Unchanged",
|
|
85508
|
-
OfficerPositionName: "Director",
|
|
85509
|
-
Id: aff._id,
|
|
85510
|
-
RoleId: aff.role?.role_name ?? "",
|
|
85511
|
-
IsDirector: true,
|
|
85512
|
-
ResidentCanadian: residentCanadian,
|
|
85513
|
-
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null })
|
|
85514
|
-
};
|
|
85515
|
-
case IRCurrentState.Changed:
|
|
85516
|
-
return {
|
|
85517
|
-
OfficerPosition: 0,
|
|
85518
|
-
OfficerId: null,
|
|
85519
|
-
CeasedAppointedRoles: [{
|
|
85520
|
-
State: 1,
|
|
85521
|
-
StateName: "Unchanged",
|
|
85522
|
-
Position: null,
|
|
85523
|
-
PositionFullName: "Director",
|
|
85524
|
-
CeasedDate: ceaseDate,
|
|
85525
|
-
AppointedDate: electedDate,
|
|
85526
|
-
AppointedDateSpecified: true,
|
|
85527
|
-
EditAppointedDate: false
|
|
85528
|
-
}],
|
|
85529
|
-
CurrentState: 1,
|
|
85530
|
-
CurrentStateName: "Unchanged",
|
|
85531
|
-
OfficerPositionName: "Director",
|
|
85532
|
-
Id: aff._id,
|
|
85533
|
-
RoleId: aff.role?.role_name ?? "",
|
|
85534
|
-
IsDirector: true,
|
|
85535
|
-
ResidentCanadian: residentCanadian,
|
|
85536
|
-
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null }),
|
|
85537
|
-
CeaseDate: "",
|
|
85538
|
-
ElectedDate: "",
|
|
85539
|
-
CeasedDateSpecified: false,
|
|
85540
|
-
PostalAddress,
|
|
85541
|
-
EmailAddress: email,
|
|
85542
|
-
ReasonForRemove: null,
|
|
85543
|
-
IsInvalid: false
|
|
85544
|
-
};
|
|
85545
|
-
}
|
|
85546
|
-
} else {
|
|
85547
|
-
switch (currentState) {
|
|
85548
|
-
case IRCurrentState.Added:
|
|
85549
|
-
return {
|
|
85550
|
-
Id: aff._id,
|
|
85551
|
-
CeaseDate: "",
|
|
85552
|
-
CeasedAppointedRoles: [{
|
|
85553
|
-
Id: aff._id,
|
|
85554
|
-
Position: position,
|
|
85555
|
-
PositionFullName: positionName,
|
|
85556
|
-
AppointedDate: electedDate
|
|
85557
|
-
}],
|
|
85558
|
-
ElectedDate: electedDate,
|
|
85559
|
-
EmailAddress: email,
|
|
85560
|
-
IsDirector: false,
|
|
85561
|
-
PersonName,
|
|
85562
|
-
OfficerPosition: position,
|
|
85563
|
-
OfficerPositionName: positionName,
|
|
85564
|
-
OfficerPositionSpecified: true,
|
|
85565
|
-
PostalAddress,
|
|
85566
|
-
ResidentCanadian: residentCanadian,
|
|
85567
|
-
IsInvalid: false,
|
|
85568
|
-
CurrentState: 5
|
|
85569
|
-
};
|
|
85570
|
-
case IRCurrentState.Ceased:
|
|
85571
|
-
return {
|
|
85572
|
-
OfficerPosition: 0,
|
|
85573
|
-
OfficerPositionSpecified: true,
|
|
85574
|
-
OfficerId: null,
|
|
85575
|
-
CeasedAppointedRoles: [{
|
|
85576
|
-
State: 2,
|
|
85577
|
-
StateName: "Changed",
|
|
85578
|
-
Position: position,
|
|
85579
|
-
PositionFullName: positionName,
|
|
85580
|
-
CeasedDate: ceaseDate,
|
|
85581
|
-
AppointedDate: electedDate,
|
|
85582
|
-
AppointedDateSpecified: true,
|
|
85583
|
-
EditAppointedDate: false
|
|
85584
|
-
}],
|
|
85585
|
-
CurrentState: IRCurrentState.Ceased,
|
|
85586
|
-
CurrentStateName: "Unchanged",
|
|
85587
|
-
OfficerPositionName: positionName,
|
|
85588
|
-
Id: aff._id,
|
|
85589
|
-
RoleId: aff.role?.role_name ?? "",
|
|
85590
|
-
IsDirector: false,
|
|
85591
|
-
ResidentCanadian: residentCanadian,
|
|
85592
|
-
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null })
|
|
85593
|
-
};
|
|
85594
|
-
case IRCurrentState.Changed:
|
|
85595
|
-
return {
|
|
85596
|
-
OfficerPosition: 0,
|
|
85597
|
-
OfficerId: null,
|
|
85598
|
-
CeasedAppointedRoles: [{
|
|
85599
|
-
State: 1,
|
|
85600
|
-
StateName: "Unchanged",
|
|
85601
|
-
Position: position,
|
|
85602
|
-
PositionFullName: positionName,
|
|
85603
|
-
CeasedDate: ceaseDate,
|
|
85604
|
-
AppointedDate: electedDate,
|
|
85605
|
-
AppointedDateSpecified: true,
|
|
85606
|
-
EditAppointedDate: false
|
|
85607
|
-
}],
|
|
85608
|
-
CurrentState: 1,
|
|
85609
|
-
CurrentStateName: "Unchanged",
|
|
85610
|
-
OfficerPositionName: positionName,
|
|
85611
|
-
Id: aff._id,
|
|
85612
|
-
RoleId: aff.role?.role_name ?? "",
|
|
85613
|
-
IsDirector: false,
|
|
85614
|
-
ResidentCanadian: residentCanadian,
|
|
85615
|
-
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: position }),
|
|
85616
|
-
CeaseDate: ceaseDate,
|
|
85617
|
-
ElectedDate: electedDate,
|
|
85618
|
-
CeasedDateSpecified: false,
|
|
85619
|
-
PostalAddress,
|
|
85620
|
-
EmailAddress: email,
|
|
85621
|
-
ReasonForRemove: null,
|
|
85622
|
-
IsInvalid: false
|
|
85623
|
-
};
|
|
85624
|
-
}
|
|
85625
|
-
}
|
|
85626
|
-
return null;
|
|
85627
|
-
};
|
|
85628
|
-
const { incomingAffiliations = [], outgoingAffiliations = [], editedAffiliations = [] } = task;
|
|
85629
|
-
const isDirectorAff = (aff) => isPrincipalAffiliation(aff) && aff.role.role_name === "Director";
|
|
85630
|
-
const isOfficerAff = (aff) => isPrincipalAffiliation(aff) && aff.role.role_name === "Officer";
|
|
85631
|
-
const ChangeDirectors = {
|
|
85632
|
-
AddedDirectors: incomingAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Added, deltaData.directors[a._id])),
|
|
85633
|
-
CeasedDirectors: outgoingAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Ceased, deltaData.directors[a._id])),
|
|
85634
|
-
EditedDirectors: editedAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Changed, deltaData.directors[a._id]))
|
|
85635
|
-
};
|
|
85636
|
-
const ChangeOfficers = {
|
|
85637
|
-
AddedOfficers: incomingAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Added, deltaData.officers[a._id], true)),
|
|
85638
|
-
CeasedOfficers: outgoingAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Ceased, deltaData.officers[a._id], true)),
|
|
85639
|
-
EditedOfficers: editedAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Changed, deltaData.officers[a._id], true))
|
|
85640
|
-
};
|
|
85641
|
-
const cert = task._ext?.certified ?? {};
|
|
85642
|
-
const certEntityAddr = cert.address;
|
|
85643
|
-
const certifierCountry = normalizeCountryCode(certEntityAddr?.country ?? "");
|
|
85644
|
-
const certifierProvince = certEntityAddr?.province_state ?? "";
|
|
85645
|
-
const certifierProv = certifierCountry === "CA" ? CANProvinceToCode(certifierProvince) : certifierCountry === "US" ? USStateToCode(certifierProvince) : certifierProvince;
|
|
85646
|
-
const isOfficerCert = cert.type !== "Director";
|
|
85647
|
-
const certDeltaAddr = deltaData.certifiedBy?.address;
|
|
85648
|
-
const certStreetOnly = getAddressComponent(certEntityAddr, "Street Only");
|
|
85649
|
-
const { StreetType: certStreetType, StreetDirection: certStreetDir } = parseStreetAddress(certStreetOnly);
|
|
85650
|
-
const certifier = {
|
|
85651
|
-
PersonName: {
|
|
85652
|
-
FirstName: cert.firstName,
|
|
85653
|
-
LastName: cert.lastName,
|
|
85654
|
-
MiddleName: cert.middleName,
|
|
85655
|
-
Position: cert.type === "Officer" ? cert.officerTitle ?? null : null
|
|
85656
|
-
},
|
|
85657
|
-
PostCode: certEntityAddr?.postal_zip ?? null,
|
|
85658
|
-
AdditionalDetails: {
|
|
85659
|
-
Email: cert.email ?? null,
|
|
85660
|
-
CareOf: getAddressComponent(certEntityAddr, "Attention") || certEntityAddr?.attention || null,
|
|
85661
|
-
AddressType: "standard",
|
|
85662
|
-
StreetNumberSuffix: "",
|
|
85663
|
-
StreetNumber: certDeltaAddr?.streetNumber ?? getAddressComponent(certEntityAddr, "Street Number Only") ?? "",
|
|
85664
|
-
StreetName: (() => {
|
|
85665
|
-
const { StreetName } = parseStreetAddress(certStreetOnly);
|
|
85666
|
-
return certDeltaAddr?.streetName ?? StreetName ?? "";
|
|
85667
|
-
})(),
|
|
85668
|
-
StreetType: certDeltaAddr?.streetType ?? certStreetType ?? null,
|
|
85669
|
-
StreetDirection: certDeltaAddr?.streetDirection ?? (certStreetDir ? certStreetDir : null),
|
|
85670
|
-
UnitType: certDeltaAddr?.unitType ?? null,
|
|
85671
|
-
UnitNumber: certDeltaAddr?.unitNumber ?? getAddressComponent(certEntityAddr, "Suite/Apartment") ?? null,
|
|
85672
|
-
CityTown: certEntityAddr?.city ?? null,
|
|
85673
|
-
PostCode: certEntityAddr?.postal_zip ?? null,
|
|
85674
|
-
Prov: certifierProv,
|
|
85675
|
-
CountryCode: certifierCountry
|
|
85676
|
-
}
|
|
85677
|
-
};
|
|
85678
|
-
const regOfficeEntityAddr = findRegisteredOffice(task.entity.affiliations);
|
|
85679
|
-
const regCountry = normalizeCountryCode(regOfficeEntityAddr?.country ?? "");
|
|
85680
|
-
const regProvince = regOfficeEntityAddr?.province_state ?? "";
|
|
85681
|
-
const regRegion = regCountry === "CA" ? CANProvinceToCode(regProvince) : regCountry === "US" ? USStateToCode(regProvince) : regProvince;
|
|
85682
|
-
const regDelta = deltaData.registeredOfficeAddress;
|
|
85683
|
-
const initType = ["CA", "US"].includes(regCountry) ? `address${regCountry}` : "addressINTL";
|
|
85684
|
-
const RegisteredHeadOfficeAddress = {
|
|
85685
|
-
AddressStandardLot: "standard",
|
|
85686
|
-
CareOf: getAddressComponent(regOfficeEntityAddr, "Attention") || regOfficeEntityAddr?.attention || null,
|
|
85687
|
-
UnitType: regDelta.unitType ?? null,
|
|
85688
|
-
UnitNumber: regDelta.unitNumber ?? null,
|
|
85689
|
-
StreetNumber: regDelta.streetNumber,
|
|
85690
|
-
StreetNumberSuffix: "",
|
|
85691
|
-
StreetName: regDelta.streetName,
|
|
85692
|
-
StreetType: regDelta.streetType ?? null,
|
|
85693
|
-
StreetDirection: regDelta.streetDirection ?? null,
|
|
85694
|
-
StreetAddressContinued: getAddressComponent(regOfficeEntityAddr, "Suite/Apartment") ?? "",
|
|
85695
|
-
CityTown: regOfficeEntityAddr?.city ?? null,
|
|
85696
|
-
Region: regRegion,
|
|
85697
|
-
RegionName: regRegion,
|
|
85698
|
-
PostCode: regOfficeEntityAddr?.postal_zip ?? null,
|
|
85699
|
-
CountryCode: regCountry,
|
|
85700
|
-
InitType: initType
|
|
85701
|
-
};
|
|
85702
|
-
const contactAffiliation = task.entity.affiliations?.find((a) => a._id === deltaData.contactUid);
|
|
85703
|
-
const authorizationType = ["Director", "Officer"].includes(cert.type ?? "") ? AuthorizationType.DirectorOrOfficer : AuthorizationType.Other;
|
|
85704
|
-
const isOther = authorizationType === AuthorizationType.Other;
|
|
85705
|
-
const filingFormKey = _OntarioUpdateMaintainService.getFilingFormKey(task);
|
|
85706
|
-
const filingFormType = _OntarioUpdateMaintainService.getFilingFormType(task);
|
|
85707
|
-
const eCoreFilingFormType = _OntarioUpdateMaintainService.getECoreFilingFormType(task);
|
|
85708
|
-
const isAnnualReturn = isAnnualReturnTask(task);
|
|
85709
|
-
const annualReturnYear = isAnnualReturn ? (new Date(task._ext?._reference_date).getFullYear() || (/* @__PURE__ */ new Date()).getFullYear()).toString() : void 0;
|
|
85710
|
-
const requestBody = {
|
|
85711
|
-
Jurisdiction: "ON",
|
|
85712
|
-
FilingFormType: filingFormType,
|
|
85713
|
-
PayloadType: 1,
|
|
85714
|
-
CurrentDataServiceOrderId: serviceOrderId,
|
|
85715
|
-
Filing: {
|
|
85716
|
-
Form: {
|
|
85717
|
-
[filingFormKey]: {
|
|
85718
|
-
FilingFormType: eCoreFilingFormType,
|
|
85719
|
-
CorporationInfo: {
|
|
85720
|
-
AuthorizedRepresentative: {
|
|
85721
|
-
FirstName: cert.firstName,
|
|
85722
|
-
LastName: cert.lastName,
|
|
85723
|
-
MiddleName: cert.middleName
|
|
85724
|
-
},
|
|
85725
|
-
CurrentData: __spreadProps(__spreadValues({
|
|
85726
|
-
Reference: deltaData.referenceNumber ?? null,
|
|
85727
|
-
Docket: deltaData.docketNumber ?? null,
|
|
85728
|
-
EntityIdentifier: Number(task.entity._profile.corp_number)
|
|
85729
|
-
}, isAnnualReturn ? { AnnualReturnYear: annualReturnYear } : {}), {
|
|
85730
|
-
ChangeCertification: {
|
|
85731
|
-
DirectorOfficerCertifier: !isOther ? __spreadProps(__spreadValues({}, certifier), {
|
|
85732
|
-
directorOrOfficer: isOfficerCert ? "officer" : "director"
|
|
85733
|
-
}) : null,
|
|
85734
|
-
IndividualCertifier: isOther ? certifier : null,
|
|
85735
|
-
AuthorizationType: authorizationType
|
|
85736
|
-
},
|
|
85737
|
-
ContactInformation: contactAffiliation ? OntarioUpdateMaintainFormHelper.generateContact(contactAffiliation) : null,
|
|
85738
|
-
RegisteredHeadOfficeAddress,
|
|
85739
|
-
ChangeDirectors,
|
|
85740
|
-
ChangeOfficers
|
|
85741
|
-
})
|
|
85742
|
-
}
|
|
85743
|
-
}
|
|
85744
|
-
}
|
|
85745
|
-
}
|
|
85746
|
-
};
|
|
85747
85121
|
const fetchFn = opts?.fetchImpl ?? fetch;
|
|
85748
85122
|
const url = signature.proxyApiUrl;
|
|
85749
85123
|
const resp = yield fetchFn(url, {
|
|
@@ -85768,7 +85142,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85768
85142
|
if (result?.Draft) {
|
|
85769
85143
|
signature.filingValidateSuccess?.({
|
|
85770
85144
|
searchOrFilingType: "ontarioInitialReturn",
|
|
85771
|
-
serviceOrderId,
|
|
85145
|
+
serviceOrderId: requestBody.CurrentDataServiceOrderId,
|
|
85772
85146
|
validatedOn: /* @__PURE__ */ new Date(),
|
|
85773
85147
|
provider: "obr",
|
|
85774
85148
|
draftPdf: result.Draft,
|
|
@@ -85788,11 +85162,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85788
85162
|
return __async(this, arguments, function* (signature, serviceOrderId, opts = {}) {
|
|
85789
85163
|
ensureAuthInputs(signature);
|
|
85790
85164
|
if (!serviceOrderId) {
|
|
85791
|
-
|
|
85792
|
-
throw err;
|
|
85165
|
+
throw new Error("Missing serviceOrderId.");
|
|
85793
85166
|
}
|
|
85794
85167
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
85795
|
-
opts.endpointPath?.split("/").filter((item) => Boolean(item) && item !== "api").join("/") ?? `/FilingON`;
|
|
85796
85168
|
const url = signature.proxyApiUrl;
|
|
85797
85169
|
const resp = yield fetchWithJwtRetry(signature, () => fetchFn(url, {
|
|
85798
85170
|
method: "POST",
|
|
@@ -85966,6 +85338,750 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85966
85338
|
}
|
|
85967
85339
|
});
|
|
85968
85340
|
|
|
85341
|
+
// src/app/helpers/mappers/ontario-formation.mapper.ts
|
|
85342
|
+
function buildOntarioFormationValidateRequest(task, deltaData) {
|
|
85343
|
+
return {
|
|
85344
|
+
Jurisdiction: CANProvinceToCode(task.entity?._compliance?.home_jurisdiction) || "ON",
|
|
85345
|
+
Incorporation: formationTaskToECore(task, deltaData)
|
|
85346
|
+
};
|
|
85347
|
+
}
|
|
85348
|
+
var init_ontario_formation_mapper = __esm({
|
|
85349
|
+
"src/app/helpers/mappers/ontario-formation.mapper.ts"() {
|
|
85350
|
+
init_transform_utils();
|
|
85351
|
+
init_address_utils();
|
|
85352
|
+
}
|
|
85353
|
+
});
|
|
85354
|
+
|
|
85355
|
+
// src/app/helpers/mappers/federal-formation.mapper.ts
|
|
85356
|
+
function federalFormationTaskToECore(task, deltaData) {
|
|
85357
|
+
const corporateNameDelta = deltaData.corporateName;
|
|
85358
|
+
const significantControl = deltaData.individualsWithSignificantControl;
|
|
85359
|
+
const isNumbered = task._ext._numbered_company === true;
|
|
85360
|
+
const englishName = !isNumbered ? {
|
|
85361
|
+
CorporationName: task.entity._profile.name || "",
|
|
85362
|
+
ReservationDate: "",
|
|
85363
|
+
ReservationNumber: corporateNameDelta?.primaryNameReservationNumber || ""
|
|
85364
|
+
} : void 0;
|
|
85365
|
+
const frenchName = !isNumbered && task.entity._profile.secondary_name ? {
|
|
85366
|
+
CorporationName: task.entity._profile.secondary_name || "",
|
|
85367
|
+
ReservationDate: "",
|
|
85368
|
+
ReservationNumber: corporateNameDelta?.secondaryNameReservationNumber || ""
|
|
85369
|
+
} : void 0;
|
|
85370
|
+
const legalEnding = corporateNameDelta?.legalElement;
|
|
85371
|
+
const mailingAddressUid = deltaData.registeredOfficeAddress?.mailingAddressForCorrespondenceUid;
|
|
85372
|
+
const mailingAddress = task.entity.addresses.find((address) => address.uid === mailingAddressUid);
|
|
85373
|
+
const registeredOfficeAddress = findRegisteredOfficeAddress(task);
|
|
85374
|
+
const directors = task.entity.affiliations.filter((aff) => aff.kind === "PrincipalAffiliationV3" && aff.role.role_name === DirectorRole.DIRECTOR);
|
|
85375
|
+
const incorporators = task._ext._incorporators ?? [];
|
|
85376
|
+
const requestedDate = task._ext._future_filing_date ? new Date(task._ext._future_filing_date).toISOString().split("T")[0] : (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
85377
|
+
const officialBusinessEmail = registeredOfficeAddress?.communications?.find((c) => c.type === "Business Email")?.value;
|
|
85378
|
+
const contact = task.entity.affiliations.find((a) => a._id === deltaData.contactUid);
|
|
85379
|
+
const epl = getEPRegistrations(task);
|
|
85380
|
+
const eplDelta = deltaData.extraProvincialLicenses;
|
|
85381
|
+
const directorsDelta = deltaData.directors;
|
|
85382
|
+
const individualsWithSignificantControlDelta = deltaData.individualsWithSignificantControl;
|
|
85383
|
+
const consentToProvideEmails = deltaData.consentToProvideDirectorEmailAddressesForFullAccessManager;
|
|
85384
|
+
const individualsWithSignificantControl = getIndividualWithSignificantControl(task.entity.affiliations);
|
|
85385
|
+
const isListIsc = significantControl.type === ISCOptions.ListISC;
|
|
85386
|
+
const isNonPreapproved = corporateNameDelta?.nameType === NameType2.NonPreapproved;
|
|
85387
|
+
const payload = {
|
|
85388
|
+
IncorporationType: corporateNameDelta?.nameType,
|
|
85389
|
+
LegalEnding: isNumbered ? legalEnding : "",
|
|
85390
|
+
EnglishName: englishName,
|
|
85391
|
+
FrenchName: frenchName,
|
|
85392
|
+
PreappClientNumber: corporateNameDelta?.preapprovalConfirmationNumber,
|
|
85393
|
+
PreappRequestNumber: corporateNameDelta?.preapprovalRequestId,
|
|
85394
|
+
RegisteredOffice: registeredOfficeAddress ? __spreadProps(__spreadValues({}, mapAddress(registeredOfficeAddress)), {
|
|
85395
|
+
MailingAddressSameAsOffice: registeredOfficeAddress.uid === mailingAddressUid
|
|
85396
|
+
}) : void 0,
|
|
85397
|
+
MailingAddress: mailingAddress ? __spreadProps(__spreadValues({}, mapAddress(mailingAddress)), {
|
|
85398
|
+
MailingAddressSameAsOffice: mailingAddress.uid === mailingAddressUid
|
|
85399
|
+
}) : void 0,
|
|
85400
|
+
Directors: directors.map((d) => transformDirector(d, directorsDelta[d.participant._id], consentToProvideEmails)),
|
|
85401
|
+
Incorporators: incorporators.map((i) => transformIncorporator(i)),
|
|
85402
|
+
CoverLetter: createCoverLetter2(officialBusinessEmail, contact?.participant),
|
|
85403
|
+
DirectorNumberType: task.entity._articles?.min_directors === task.entity._articles?.max_directors ? ECoreDirectorNumberType.Fixed : ECoreDirectorNumberType.Range,
|
|
85404
|
+
MinimumNumberOfDirectors: task.entity._articles?.min_directors,
|
|
85405
|
+
MaximumNumberOfDirectors: task.entity._articles?.max_directors,
|
|
85406
|
+
FixedNumberOfDirectors: task.entity._articles?.min_directors === task.entity._articles?.max_directors ? task.entity._articles?.min_directors : null,
|
|
85407
|
+
SignificantControlType: significantControl?.type,
|
|
85408
|
+
ExclusionReason: significantControl?.exclusionReason ?? 0,
|
|
85409
|
+
RestrictionsOnBusiness: task.entity._articles?.restrictions || "None",
|
|
85410
|
+
RestrictionsOnShareClasses: task.entity._articles?.share_restrictions_text || "",
|
|
85411
|
+
RestrictionsOnShareTransfers: task.entity._articles?.transfer_restrictions_text || "None",
|
|
85412
|
+
OtherProvisions: task.entity._articles?.other_provisions || "None",
|
|
85413
|
+
EffectiveType: determineEffectiveType(requestedDate),
|
|
85414
|
+
EffectiveDate: requestedDate,
|
|
85415
|
+
SignatureFirstName: "",
|
|
85416
|
+
SignatureLastName: "",
|
|
85417
|
+
OfficerPhoneNumber: "",
|
|
85418
|
+
HasEPL: epl.length > 0 ? 1 : 0,
|
|
85419
|
+
ExtraProvincialLicences: epl.length ? epl.map((reg) => transformEPL(reg, eplDelta[reg.uid])) : void 0,
|
|
85420
|
+
IndividualsWithSignificantControl: isListIsc ? (() => {
|
|
85421
|
+
const deltaMap = new Map((individualsWithSignificantControlDelta.individuals ?? []).map((d) => [
|
|
85422
|
+
d.affiliationId,
|
|
85423
|
+
d
|
|
85424
|
+
]));
|
|
85425
|
+
return individualsWithSignificantControl.filter((aff) => deltaMap.has(aff._id)).map((aff) => transformIndividualWithSignificantControl(aff, deltaMap.get(aff._id)));
|
|
85426
|
+
})() : void 0,
|
|
85427
|
+
AdditionalInformation: isNonPreapproved ? [
|
|
85428
|
+
{
|
|
85429
|
+
FieldSection: "Additional information on business activities",
|
|
85430
|
+
Sections: [
|
|
85431
|
+
{
|
|
85432
|
+
FieldName: "Describe the type of business/activities that the corporation intends to carry on",
|
|
85433
|
+
FieldValue: corporateNameDelta?.businessActivity ?? ""
|
|
85434
|
+
},
|
|
85435
|
+
{
|
|
85436
|
+
FieldName: "Specify the geographic area in which the corporation is likely to operate (e.g., province, territory, state or other)",
|
|
85437
|
+
FieldValue: corporateNameDelta?.locationOfOperations ?? ""
|
|
85438
|
+
},
|
|
85439
|
+
{
|
|
85440
|
+
FieldName: "Describe the type of clientele the corporation intends to have",
|
|
85441
|
+
FieldValue: corporateNameDelta?.typeOfClientele ?? ""
|
|
85442
|
+
},
|
|
85443
|
+
{
|
|
85444
|
+
FieldName: "If the proposed name contains a family name belonging to someone other than the incorporator, state the person's relationship to the corporation.",
|
|
85445
|
+
FieldValue: corporateNameDelta?.originOfKeyword ?? ""
|
|
85446
|
+
},
|
|
85447
|
+
{
|
|
85448
|
+
FieldName: "Similar names or trademarks you've registered or searches you conducted.",
|
|
85449
|
+
FieldValue: corporateNameDelta?.similarNamesSearchedOrRegistered ?? ""
|
|
85450
|
+
}
|
|
85451
|
+
]
|
|
85452
|
+
}
|
|
85453
|
+
] : void 0
|
|
85454
|
+
// NOTE: Spec does not include these; kept commented for reference.
|
|
85455
|
+
// NAICSCode: naicsData.code,
|
|
85456
|
+
// PrimaryActivity: naicsData.description,
|
|
85457
|
+
// OfficialEmail: officialBusinessEmail,
|
|
85458
|
+
// Authorization: true,
|
|
85459
|
+
};
|
|
85460
|
+
return payload;
|
|
85461
|
+
}
|
|
85462
|
+
function buildFederalFormationValidateRequest(task, deltaData) {
|
|
85463
|
+
return {
|
|
85464
|
+
Jurisdiction: "CD",
|
|
85465
|
+
Incorporation: federalFormationTaskToECore(task, deltaData)
|
|
85466
|
+
};
|
|
85467
|
+
}
|
|
85468
|
+
function transformDirector(affiliation, deltaData, consentToProvideEmails) {
|
|
85469
|
+
const address = affiliation.addresses[0] || affiliation.parent_affiliation?.addresses?.[0];
|
|
85470
|
+
return {
|
|
85471
|
+
FirstName: affiliation.participant._profile.firstName,
|
|
85472
|
+
MiddleName: affiliation.participant._profile.middleName,
|
|
85473
|
+
LastName: affiliation.participant._profile.lastName,
|
|
85474
|
+
IsResident: deltaData.residentCanadian ? 1 : 2,
|
|
85475
|
+
Address: address ? mapAddress(address) : void 0,
|
|
85476
|
+
RequiresFullAccessManagerInvitation: deltaData.inviteForFullAccessManager,
|
|
85477
|
+
FullAccessManagerInvitationEmail: affiliation.participant.communicationEmail,
|
|
85478
|
+
FullAccessManagerEmailConsent: consentToProvideEmails
|
|
85479
|
+
};
|
|
85480
|
+
}
|
|
85481
|
+
function transformIndividualWithSignificantControl(affiliation, deltaData) {
|
|
85482
|
+
const address = affiliation.addresses[0] || affiliation.parent_affiliation?.addresses?.[0];
|
|
85483
|
+
const allAddresses = [
|
|
85484
|
+
...affiliation.addresses ?? [],
|
|
85485
|
+
...affiliation.parent_affiliation?.addresses ?? []
|
|
85486
|
+
];
|
|
85487
|
+
const serviceAddress = deltaData.addressForService ? allAddresses.find((a) => a.uid === deltaData.addressForService) : void 0;
|
|
85488
|
+
return {
|
|
85489
|
+
FirstName: affiliation.participant._profile.firstName,
|
|
85490
|
+
MiddleName: affiliation.participant._profile.middleName,
|
|
85491
|
+
LastName: affiliation.participant._profile.lastName,
|
|
85492
|
+
DateOfBirth: affiliation.participant._profile.date_of_birth,
|
|
85493
|
+
CountriesOfCitizenship: (affiliation.participant?._profile?.["citizenships"] ?? []).map((c) => normalizeCountryCode(c)),
|
|
85494
|
+
CountriesOfResidence: (affiliation.participant?._profile?.tax_residency ?? []).map((tr) => normalizeCountryCode(tr.country)),
|
|
85495
|
+
Address: address ? mapAddress(address) : void 0,
|
|
85496
|
+
ServiceAddress: serviceAddress ? mapAddress(serviceAddress) : void 0,
|
|
85497
|
+
TypeOfInterest: deltaData.typeOfInterest,
|
|
85498
|
+
ShareHoldingMethod: deltaData.shareHoldingMethod,
|
|
85499
|
+
JointHoldingType: deltaData.jointHoldingType,
|
|
85500
|
+
PercentageInterest: deltaData.percentageInterest
|
|
85501
|
+
};
|
|
85502
|
+
}
|
|
85503
|
+
function transformIncorporator(incorporator) {
|
|
85504
|
+
const isIndividual = incorporator.type === "person";
|
|
85505
|
+
const incorporationType = isIndividual ? ECoreIncorporatorType.Individual : ECoreIncorporatorType.BodyCorporate;
|
|
85506
|
+
return {
|
|
85507
|
+
IncorporatorType: incorporationType,
|
|
85508
|
+
FirstName: isIndividual ? incorporator.firstName : void 0,
|
|
85509
|
+
MiddleName: isIndividual ? incorporator.middleName : void 0,
|
|
85510
|
+
LastName: isIndividual ? incorporator.lastName : void 0,
|
|
85511
|
+
BodyCorporate: !isIndividual ? incorporator.incorporator_name : void 0,
|
|
85512
|
+
Signature: `${incorporator.signatory_first_name ?? ""} ${incorporator.signatory_last_name ?? ""}, ${incorporator.signatory_title ?? ""}`,
|
|
85513
|
+
Address: mapAddress(incorporator)
|
|
85514
|
+
};
|
|
85515
|
+
}
|
|
85516
|
+
function mapAddress(address) {
|
|
85517
|
+
const country = normalizeCountryCode(address?.country ?? "");
|
|
85518
|
+
const provinceState = country === "CA" ? CANCodeToProvince(address?.province_state) : country === "US" ? USCodeToState(address?.province_state) : address?.province_state ?? "";
|
|
85519
|
+
const addressRegion = country === "CA" ? CANProvinceToCode(provinceState) : country === "US" ? USStateToCode(provinceState) : provinceState;
|
|
85520
|
+
return {
|
|
85521
|
+
CareOf: address?.components?.find((c) => c.name === "Attention")?.value || "",
|
|
85522
|
+
StreetNumber: address?.components?.find((c) => c.name === "Street Number Only")?.value || "",
|
|
85523
|
+
StreetName: address?.components?.find((c) => c.name === "Street Only")?.value || "",
|
|
85524
|
+
UnitNumber: address?.components?.find((c) => c.name === "Suite/Apartment")?.value || "",
|
|
85525
|
+
AddressLine2: "",
|
|
85526
|
+
DeliveryCode: "",
|
|
85527
|
+
City: address?.city ?? "",
|
|
85528
|
+
ProvinceState: addressRegion,
|
|
85529
|
+
Code: address?.postal_zip ?? "",
|
|
85530
|
+
Country: normalizeCountryCode(address?.country)
|
|
85531
|
+
};
|
|
85532
|
+
}
|
|
85533
|
+
function transformEPL(registration, deltaData) {
|
|
85534
|
+
const registeredOffice = [...registration.affiliations ?? []].find((aff) => aff.role.role_name === "Shared Address" && aff.role.static_title === "Registered Office");
|
|
85535
|
+
const registeredOfficeAddress = registeredOffice?.addresses?.[0] || registeredOffice?.parent_affiliation?.addresses?.[0];
|
|
85536
|
+
const operating = [...registration.affiliations ?? []].find((aff) => aff.role.role_name === "Shared Address" && aff.role.static_title === "Operating Address");
|
|
85537
|
+
const operatingAddress = operating?.addresses?.[0] || operating?.parent_affiliation?.addresses?.[0];
|
|
85538
|
+
const chiefManager = [...registration.affiliations ?? []].find((affiliation) => affiliation._id === deltaData.chiefManagerUid);
|
|
85539
|
+
const chiefManagerAddress = chiefManager?.addresses?.[0] || chiefManager?.parent_affiliation?.addresses?.[0];
|
|
85540
|
+
const signatoryManager = [...registration.affiliations ?? []].find((affiliation) => affiliation._id === deltaData.signatoryUid);
|
|
85541
|
+
const affiliations = registration.affiliations ?? [];
|
|
85542
|
+
const contactAffiliation = deltaData.contactUid ? affiliations.find((aff) => aff._id === deltaData.contactUid) : void 0;
|
|
85543
|
+
let serviceAddress;
|
|
85544
|
+
if (deltaData.serviceAddressUid) {
|
|
85545
|
+
for (const aff of affiliations) {
|
|
85546
|
+
serviceAddress = aff.addresses?.find((a) => a.uid === deltaData.serviceAddressUid) ?? aff.parent_affiliation?.addresses?.find((a) => a.uid === deltaData.serviceAddressUid);
|
|
85547
|
+
if (serviceAddress)
|
|
85548
|
+
break;
|
|
85549
|
+
}
|
|
85550
|
+
}
|
|
85551
|
+
return {
|
|
85552
|
+
Jurisdiction: registration._compliance.home_jurisdiction,
|
|
85553
|
+
epFiling: {
|
|
85554
|
+
EffectiveDate: registration.registration_date,
|
|
85555
|
+
Language: '""',
|
|
85556
|
+
RegOffice: {
|
|
85557
|
+
Address: registeredOfficeAddress ? mapAddress(registeredOfficeAddress) : {}
|
|
85558
|
+
},
|
|
85559
|
+
OperatingAddress: {
|
|
85560
|
+
Address: operatingAddress ? mapAddress(operatingAddress) : {}
|
|
85561
|
+
},
|
|
85562
|
+
DeliveryAddress: contactAffiliation ? {
|
|
85563
|
+
FirstName: contactAffiliation.participant._profile.firstName,
|
|
85564
|
+
LastName: contactAffiliation.participant._profile.lastName,
|
|
85565
|
+
PhoneNumber: contactAffiliation.participant.communicationPhone,
|
|
85566
|
+
Email: contactAffiliation.participant.communicationEmail,
|
|
85567
|
+
Office: serviceAddress ? __spreadProps(__spreadValues({}, mapAddress(serviceAddress)), {
|
|
85568
|
+
MailingAddressSameAsOffice: registeredOfficeAddress?.uid === deltaData.serviceAddressUid
|
|
85569
|
+
}) : {},
|
|
85570
|
+
PickupNumber: ""
|
|
85571
|
+
} : void 0,
|
|
85572
|
+
ChiefManager: {
|
|
85573
|
+
FirstName: chiefManager?.participant._profile.firstName,
|
|
85574
|
+
MiddleName: chiefManager?.participant._profile.middleName,
|
|
85575
|
+
LastName: chiefManager?.participant._profile.lastName,
|
|
85576
|
+
Office: chiefManagerAddress ? mapAddress(chiefManagerAddress) : {},
|
|
85577
|
+
AddressEffectiveDate: chiefManagerAddress?.effective_date,
|
|
85578
|
+
EffectiveDate: chiefManager?.start_date,
|
|
85579
|
+
PhoneNumber: chiefManager?.participant.communicationPhone
|
|
85580
|
+
},
|
|
85581
|
+
Signatory: {
|
|
85582
|
+
FirstName: signatoryManager?.participant._profile.firstName,
|
|
85583
|
+
MiddleName: signatoryManager?.participant._profile.middleName,
|
|
85584
|
+
LastName: signatoryManager?.participant._profile.lastName,
|
|
85585
|
+
SigningTitle: deltaData.signatoryRole
|
|
85586
|
+
},
|
|
85587
|
+
OfficialEmail: registeredOfficeAddress?.communications?.find((c) => c.type === "Business Email")?.value,
|
|
85588
|
+
NAICSCode: deltaData.businessActivity,
|
|
85589
|
+
PrimaryActivity: NAICS_CODE_DESCRIPTIONS[deltaData.businessActivity?.toString()]
|
|
85590
|
+
}
|
|
85591
|
+
};
|
|
85592
|
+
}
|
|
85593
|
+
function createCoverLetter2(officialBusinessEmail, contact) {
|
|
85594
|
+
return {
|
|
85595
|
+
FirstName: contact?._profile?.firstName || "",
|
|
85596
|
+
LastName: contact?._profile?.lastName || "",
|
|
85597
|
+
MiddleName: contact?._profile?.middleName || "",
|
|
85598
|
+
Email: contact?.communicationEmail || officialBusinessEmail || "",
|
|
85599
|
+
Phone: contact?.communicationPhone || "",
|
|
85600
|
+
Fax: '""'
|
|
85601
|
+
};
|
|
85602
|
+
}
|
|
85603
|
+
var init_federal_formation_mapper = __esm({
|
|
85604
|
+
"src/app/helpers/mappers/federal-formation.mapper.ts"() {
|
|
85605
|
+
init_ECoreInterfaces();
|
|
85606
|
+
init_transform_utils();
|
|
85607
|
+
init_address_utils();
|
|
85608
|
+
init_common_utils();
|
|
85609
|
+
init_FederalConstants();
|
|
85610
|
+
init_common_constants();
|
|
85611
|
+
}
|
|
85612
|
+
});
|
|
85613
|
+
|
|
85614
|
+
// src/app/entities/InitialReturnMapping.ts
|
|
85615
|
+
var OFFICER_TITLE_TO_ECORE_POSITION_CODE, ECORE_POSITION_CODE_TO_POSITION_NAME;
|
|
85616
|
+
var init_InitialReturnMapping = __esm({
|
|
85617
|
+
"src/app/entities/InitialReturnMapping.ts"() {
|
|
85618
|
+
OFFICER_TITLE_TO_ECORE_POSITION_CODE = {
|
|
85619
|
+
Chairman: "CHRM",
|
|
85620
|
+
President: "PRCH",
|
|
85621
|
+
"Vice-President": "VP",
|
|
85622
|
+
"Chief Executive Officer": "CEO",
|
|
85623
|
+
"Chief Financial Officer": "CFO",
|
|
85624
|
+
"Chief Technology Officer": "CIO",
|
|
85625
|
+
"Chief Investment Officer": "CIO",
|
|
85626
|
+
"Executive Director": "EDIR",
|
|
85627
|
+
"Managing Director": "MDIR",
|
|
85628
|
+
"Assistant Secretary": "ASEC",
|
|
85629
|
+
"General Manager": "GM",
|
|
85630
|
+
Secretary: "SECT",
|
|
85631
|
+
Treasurer: "TRES",
|
|
85632
|
+
"Assistant Treasurer": "ATRE",
|
|
85633
|
+
"Authorized Signing Officer": "ASO",
|
|
85634
|
+
Chair: "CHR",
|
|
85635
|
+
"Chair Person": "CHRP",
|
|
85636
|
+
Chairwoman: "CHRW",
|
|
85637
|
+
"Chief Administrative Officer": "CAO",
|
|
85638
|
+
"Chief Information Officer": "CIO",
|
|
85639
|
+
"Chief Manager": "CMAN",
|
|
85640
|
+
"Chief Operating Officer": "COO",
|
|
85641
|
+
Comptroller: "COMP",
|
|
85642
|
+
"Vice-Chair": "VCHR",
|
|
85643
|
+
Other: "OTH"
|
|
85644
|
+
};
|
|
85645
|
+
ECORE_POSITION_CODE_TO_POSITION_NAME = {
|
|
85646
|
+
ASEC: "ASSISTANT SECRETARY",
|
|
85647
|
+
ATRE: "ASSISTANT TREASURER",
|
|
85648
|
+
ASO: "AUTH'D SIGNING OFFICER",
|
|
85649
|
+
CHR: "CHAIR",
|
|
85650
|
+
CHRM: "CHAIRMAN",
|
|
85651
|
+
CHRP: "CHAIR PERSON",
|
|
85652
|
+
CHRW: "CHAIRWOMAN",
|
|
85653
|
+
CAO: "CHIEF ADMIN OFFICER",
|
|
85654
|
+
CEO: "CHIEF EXECUTIVE OFFICER",
|
|
85655
|
+
CFO: "CHIEF FINANCIAL OFFICER",
|
|
85656
|
+
CIO: "CHIEF INFO OFFICER",
|
|
85657
|
+
CMAN: "CHIEF MANAGER",
|
|
85658
|
+
COO: "CHIEF OPERATING OFFICER",
|
|
85659
|
+
COMP: "COMPTROLLER",
|
|
85660
|
+
EDIR: "EXECUTIVE DIRECTOR",
|
|
85661
|
+
GM: "GENERAL MANAGER",
|
|
85662
|
+
MDIR: "MANAGING DIRECTOR",
|
|
85663
|
+
OTH: "OTHER",
|
|
85664
|
+
PRCH: "PRESIDENT",
|
|
85665
|
+
SECT: "SECRETARY",
|
|
85666
|
+
TRES: "TREASURER",
|
|
85667
|
+
VCHR: "VICE-CHAIR",
|
|
85668
|
+
VP: "VICE-PRESIDENT"
|
|
85669
|
+
};
|
|
85670
|
+
}
|
|
85671
|
+
});
|
|
85672
|
+
|
|
85673
|
+
// src/app/helpers/mappers/ontario-update-maintain.mapper.ts
|
|
85674
|
+
function getFilingFormType(task) {
|
|
85675
|
+
switch (task._taskType) {
|
|
85676
|
+
case TaskType.NoticeOfChange:
|
|
85677
|
+
return ECoreGenericFilingFormType.NoticeOfChange;
|
|
85678
|
+
case TaskType.AnnualCompliance:
|
|
85679
|
+
return ECoreGenericFilingFormType.AnnualReturn;
|
|
85680
|
+
case TaskType.InitialReturn:
|
|
85681
|
+
default:
|
|
85682
|
+
return ECoreGenericFilingFormType.InitialReturn;
|
|
85683
|
+
}
|
|
85684
|
+
}
|
|
85685
|
+
function getFilingFormKey(task) {
|
|
85686
|
+
switch (task._taskType) {
|
|
85687
|
+
case TaskType.AnnualCompliance:
|
|
85688
|
+
return "AnnualReturn";
|
|
85689
|
+
case TaskType.InitialReturn:
|
|
85690
|
+
default:
|
|
85691
|
+
return "InitialReturn";
|
|
85692
|
+
}
|
|
85693
|
+
}
|
|
85694
|
+
function getInnerECoreFilingFormType(task) {
|
|
85695
|
+
switch (task._taskType) {
|
|
85696
|
+
case TaskType.NoticeOfChange:
|
|
85697
|
+
return ECoreFilingFormType.NoticeOfChange;
|
|
85698
|
+
case TaskType.AnnualCompliance:
|
|
85699
|
+
return ECoreFilingFormType.AnnualReturn;
|
|
85700
|
+
case TaskType.InitialReturn:
|
|
85701
|
+
default:
|
|
85702
|
+
return ECoreFilingFormType.InitialReturn;
|
|
85703
|
+
}
|
|
85704
|
+
}
|
|
85705
|
+
function buildOntarioUpdateMaintainValidationRequest(task, deltaData, serviceOrderId) {
|
|
85706
|
+
const getEmail = (aff) => aff.participant?.communications?.find((c) => c.type.toLowerCase().includes("email"))?.value ?? "";
|
|
85707
|
+
const buildPostalAddress = (entityAddress, deltaAddr) => {
|
|
85708
|
+
const country = normalizeCountryCode(entityAddress?.country ?? "");
|
|
85709
|
+
const province = entityAddress?.province_state ?? "";
|
|
85710
|
+
const Region = country === "CA" ? CANProvinceToCode(province) : country === "US" ? USStateToCode(province) : province;
|
|
85711
|
+
const streetOnly = getAddressComponent(entityAddress, "Street Only");
|
|
85712
|
+
const { StreetName, StreetType: StreetType2, StreetDirection: StreetDirection2 } = parseStreetAddress(streetOnly);
|
|
85713
|
+
const streetNumber = deltaAddr?.streetNumber ?? getAddressComponent(entityAddress, "Street Number Only") ?? "";
|
|
85714
|
+
const streetName = deltaAddr?.streetName ?? StreetName ?? "";
|
|
85715
|
+
const streetType = deltaAddr?.streetType ?? StreetType2 ?? null;
|
|
85716
|
+
const streetDir = deltaAddr?.streetDirection ?? (StreetDirection2 ? StreetDirection2 : null);
|
|
85717
|
+
const unitType = deltaAddr?.unitType ?? null;
|
|
85718
|
+
const unitNumber = deltaAddr?.unitNumber ?? getAddressComponent(entityAddress, "Suite/Apartment") ?? null;
|
|
85719
|
+
const careOf = getAddressComponent(entityAddress, "Attention") || entityAddress?.attention || "";
|
|
85720
|
+
const AddressLocale = country === "CA" ? "CA" : country === "US" ? "US" : "INTL";
|
|
85721
|
+
return {
|
|
85722
|
+
AddressLocale,
|
|
85723
|
+
AddressCA: AddressLocale === "CA" ? {
|
|
85724
|
+
AddressStandardLot: "standard",
|
|
85725
|
+
CityTown: entityAddress?.city,
|
|
85726
|
+
PostCode: entityAddress?.postal_zip,
|
|
85727
|
+
Suite: unitNumber ?? null,
|
|
85728
|
+
Address1: streetNumber,
|
|
85729
|
+
Address2: streetName,
|
|
85730
|
+
Address3: unitNumber ?? "",
|
|
85731
|
+
CountryCode: country,
|
|
85732
|
+
Region,
|
|
85733
|
+
RegionName: Region,
|
|
85734
|
+
CareOf: careOf,
|
|
85735
|
+
StreetNumberSuffix: "",
|
|
85736
|
+
StreetType: streetType.toString(),
|
|
85737
|
+
StreetDirection: streetDir,
|
|
85738
|
+
UnitType: unitType
|
|
85739
|
+
} : null,
|
|
85740
|
+
AddressUS: AddressLocale === "US" ? {
|
|
85741
|
+
PostCode: entityAddress?.postal_zip,
|
|
85742
|
+
CountryCode: country,
|
|
85743
|
+
Region,
|
|
85744
|
+
RegionName: Region,
|
|
85745
|
+
Address1: streetNumber,
|
|
85746
|
+
Address2: streetName,
|
|
85747
|
+
Address3: unitNumber ?? "",
|
|
85748
|
+
CityTown: entityAddress?.city
|
|
85749
|
+
} : null,
|
|
85750
|
+
AddressINTL: AddressLocale === "INTL" ? {
|
|
85751
|
+
AddressStandardLot: "standard",
|
|
85752
|
+
Region,
|
|
85753
|
+
RegionName: Region,
|
|
85754
|
+
Suite: unitNumber,
|
|
85755
|
+
PostCode: entityAddress?.postal_zip,
|
|
85756
|
+
CountryCode: country,
|
|
85757
|
+
CountryCodeName: entityAddress?.country || country,
|
|
85758
|
+
Address1: streetNumber,
|
|
85759
|
+
Address2: streetName,
|
|
85760
|
+
Address3: unitNumber ?? "",
|
|
85761
|
+
CityTown: entityAddress?.city
|
|
85762
|
+
} : null
|
|
85763
|
+
};
|
|
85764
|
+
};
|
|
85765
|
+
const buildPersonPayload = (aff, currentState, deltaEntry, isOfficer = false) => {
|
|
85766
|
+
const profile = aff.participant?._profile ?? {};
|
|
85767
|
+
const firstName = profile.firstName ?? "";
|
|
85768
|
+
const middleName = profile.middleName ?? "";
|
|
85769
|
+
const lastName = profile.lastName ?? "";
|
|
85770
|
+
const email = getEmail(aff);
|
|
85771
|
+
const electedDate = toYyyyMmDd(new Date(aff.start_date)) ?? "";
|
|
85772
|
+
const ceaseDate = toYyyyMmDd(aff.end_date) ?? "";
|
|
85773
|
+
const residentCanadian = String(deltaEntry?.residentCanadian ?? false);
|
|
85774
|
+
const entityAddr = aff.addresses?.at(0) || aff.parent_affiliation?.addresses?.at(0);
|
|
85775
|
+
const PostalAddress = buildPostalAddress(entityAddr, deltaEntry?.address);
|
|
85776
|
+
const PersonName = { FirstName: firstName, MiddleName: middleName, LastName: lastName };
|
|
85777
|
+
const position = isOfficer ? OFFICER_TITLE_TO_ECORE_POSITION_CODE[aff.role?.static_title ?? ""] ?? "" : "Director";
|
|
85778
|
+
const positionName = ECORE_POSITION_CODE_TO_POSITION_NAME[position] ?? "Director";
|
|
85779
|
+
if (!isOfficer) {
|
|
85780
|
+
switch (currentState) {
|
|
85781
|
+
case IRCurrentState.Added:
|
|
85782
|
+
return {
|
|
85783
|
+
Id: 5,
|
|
85784
|
+
CeaseDate: "",
|
|
85785
|
+
CeasedAppointedRoles: [
|
|
85786
|
+
{
|
|
85787
|
+
Id: aff._id,
|
|
85788
|
+
Position: position,
|
|
85789
|
+
PositionFullName: positionName,
|
|
85790
|
+
AppointedDate: electedDate
|
|
85791
|
+
}
|
|
85792
|
+
],
|
|
85793
|
+
ElectedDate: electedDate,
|
|
85794
|
+
EmailAddress: email,
|
|
85795
|
+
IsDirector: true,
|
|
85796
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { Position: null }),
|
|
85797
|
+
OfficerPosition: "",
|
|
85798
|
+
OfficerPositionName: "",
|
|
85799
|
+
OfficerPositionSpecified: false,
|
|
85800
|
+
PostalAddress,
|
|
85801
|
+
ResidentCanadian: residentCanadian,
|
|
85802
|
+
IsInvalid: false,
|
|
85803
|
+
CurrentState: currentState
|
|
85804
|
+
};
|
|
85805
|
+
case IRCurrentState.Ceased:
|
|
85806
|
+
return {
|
|
85807
|
+
OfficerPosition: 0,
|
|
85808
|
+
OfficerPositionSpecified: false,
|
|
85809
|
+
OfficerId: null,
|
|
85810
|
+
CeasedAppointedRoles: [
|
|
85811
|
+
{
|
|
85812
|
+
State: IRCurrentState.Added,
|
|
85813
|
+
StateName: "Changed",
|
|
85814
|
+
Position: null,
|
|
85815
|
+
PositionFullName: "Director",
|
|
85816
|
+
CeasedDate: ceaseDate,
|
|
85817
|
+
AppointedDate: electedDate,
|
|
85818
|
+
AppointedDateSpecified: true,
|
|
85819
|
+
EditAppointedDate: false
|
|
85820
|
+
}
|
|
85821
|
+
],
|
|
85822
|
+
CurrentState: currentState,
|
|
85823
|
+
CurrentStateName: "Unchanged",
|
|
85824
|
+
OfficerPositionName: "Director",
|
|
85825
|
+
Id: aff._id,
|
|
85826
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85827
|
+
IsDirector: true,
|
|
85828
|
+
ResidentCanadian: residentCanadian,
|
|
85829
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null })
|
|
85830
|
+
};
|
|
85831
|
+
case IRCurrentState.Changed:
|
|
85832
|
+
return {
|
|
85833
|
+
OfficerPosition: 0,
|
|
85834
|
+
OfficerId: null,
|
|
85835
|
+
CeasedAppointedRoles: [
|
|
85836
|
+
{
|
|
85837
|
+
State: 1,
|
|
85838
|
+
StateName: "Unchanged",
|
|
85839
|
+
Position: null,
|
|
85840
|
+
PositionFullName: "Director",
|
|
85841
|
+
CeasedDate: ceaseDate,
|
|
85842
|
+
AppointedDate: electedDate,
|
|
85843
|
+
AppointedDateSpecified: true,
|
|
85844
|
+
EditAppointedDate: false
|
|
85845
|
+
}
|
|
85846
|
+
],
|
|
85847
|
+
CurrentState: 1,
|
|
85848
|
+
CurrentStateName: "Unchanged",
|
|
85849
|
+
OfficerPositionName: "Director",
|
|
85850
|
+
Id: aff._id,
|
|
85851
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85852
|
+
IsDirector: true,
|
|
85853
|
+
ResidentCanadian: residentCanadian,
|
|
85854
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null }),
|
|
85855
|
+
CeaseDate: "",
|
|
85856
|
+
ElectedDate: "",
|
|
85857
|
+
CeasedDateSpecified: false,
|
|
85858
|
+
PostalAddress,
|
|
85859
|
+
EmailAddress: email,
|
|
85860
|
+
ReasonForRemove: null,
|
|
85861
|
+
IsInvalid: false
|
|
85862
|
+
};
|
|
85863
|
+
}
|
|
85864
|
+
} else {
|
|
85865
|
+
switch (currentState) {
|
|
85866
|
+
case IRCurrentState.Added:
|
|
85867
|
+
return {
|
|
85868
|
+
Id: aff._id,
|
|
85869
|
+
CeaseDate: "",
|
|
85870
|
+
CeasedAppointedRoles: [
|
|
85871
|
+
{
|
|
85872
|
+
Id: aff._id,
|
|
85873
|
+
Position: position,
|
|
85874
|
+
PositionFullName: positionName,
|
|
85875
|
+
AppointedDate: electedDate
|
|
85876
|
+
}
|
|
85877
|
+
],
|
|
85878
|
+
ElectedDate: electedDate,
|
|
85879
|
+
EmailAddress: email,
|
|
85880
|
+
IsDirector: false,
|
|
85881
|
+
PersonName,
|
|
85882
|
+
OfficerPosition: position,
|
|
85883
|
+
OfficerPositionName: positionName,
|
|
85884
|
+
OfficerPositionSpecified: true,
|
|
85885
|
+
PostalAddress,
|
|
85886
|
+
ResidentCanadian: residentCanadian,
|
|
85887
|
+
IsInvalid: false,
|
|
85888
|
+
CurrentState: 5
|
|
85889
|
+
};
|
|
85890
|
+
case IRCurrentState.Ceased:
|
|
85891
|
+
return {
|
|
85892
|
+
OfficerPosition: 0,
|
|
85893
|
+
OfficerPositionSpecified: true,
|
|
85894
|
+
OfficerId: null,
|
|
85895
|
+
CeasedAppointedRoles: [
|
|
85896
|
+
{
|
|
85897
|
+
State: 2,
|
|
85898
|
+
StateName: "Changed",
|
|
85899
|
+
Position: position,
|
|
85900
|
+
PositionFullName: positionName,
|
|
85901
|
+
CeasedDate: ceaseDate,
|
|
85902
|
+
AppointedDate: electedDate,
|
|
85903
|
+
AppointedDateSpecified: true,
|
|
85904
|
+
EditAppointedDate: false
|
|
85905
|
+
}
|
|
85906
|
+
],
|
|
85907
|
+
CurrentState: IRCurrentState.Ceased,
|
|
85908
|
+
CurrentStateName: "Unchanged",
|
|
85909
|
+
OfficerPositionName: positionName,
|
|
85910
|
+
Id: aff._id,
|
|
85911
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85912
|
+
IsDirector: false,
|
|
85913
|
+
ResidentCanadian: residentCanadian,
|
|
85914
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null })
|
|
85915
|
+
};
|
|
85916
|
+
case IRCurrentState.Changed:
|
|
85917
|
+
return {
|
|
85918
|
+
OfficerPosition: 0,
|
|
85919
|
+
OfficerId: null,
|
|
85920
|
+
CeasedAppointedRoles: [
|
|
85921
|
+
{
|
|
85922
|
+
State: 1,
|
|
85923
|
+
StateName: "Unchanged",
|
|
85924
|
+
Position: position,
|
|
85925
|
+
PositionFullName: positionName,
|
|
85926
|
+
CeasedDate: ceaseDate,
|
|
85927
|
+
AppointedDate: electedDate,
|
|
85928
|
+
AppointedDateSpecified: true,
|
|
85929
|
+
EditAppointedDate: false
|
|
85930
|
+
}
|
|
85931
|
+
],
|
|
85932
|
+
CurrentState: 1,
|
|
85933
|
+
CurrentStateName: "Unchanged",
|
|
85934
|
+
OfficerPositionName: positionName,
|
|
85935
|
+
Id: aff._id,
|
|
85936
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85937
|
+
IsDirector: false,
|
|
85938
|
+
ResidentCanadian: residentCanadian,
|
|
85939
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: position }),
|
|
85940
|
+
CeaseDate: ceaseDate,
|
|
85941
|
+
ElectedDate: electedDate,
|
|
85942
|
+
CeasedDateSpecified: false,
|
|
85943
|
+
PostalAddress,
|
|
85944
|
+
EmailAddress: email,
|
|
85945
|
+
ReasonForRemove: null,
|
|
85946
|
+
IsInvalid: false
|
|
85947
|
+
};
|
|
85948
|
+
}
|
|
85949
|
+
}
|
|
85950
|
+
return null;
|
|
85951
|
+
};
|
|
85952
|
+
const { incomingAffiliations = [], outgoingAffiliations = [], editedAffiliations = [] } = task;
|
|
85953
|
+
const isDirectorAff = (aff) => isPrincipalAffiliation2(aff) && aff.role.role_name === "Director";
|
|
85954
|
+
const isOfficerAff = (aff) => isPrincipalAffiliation2(aff) && aff.role.role_name === "Officer";
|
|
85955
|
+
const ChangeDirectors = {
|
|
85956
|
+
AddedDirectors: incomingAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Added, deltaData.directors[a._id])),
|
|
85957
|
+
CeasedDirectors: outgoingAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Ceased, deltaData.directors[a._id])),
|
|
85958
|
+
EditedDirectors: editedAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Changed, deltaData.directors[a._id]))
|
|
85959
|
+
};
|
|
85960
|
+
const ChangeOfficers = {
|
|
85961
|
+
AddedOfficers: incomingAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Added, deltaData.officers[a._id], true)),
|
|
85962
|
+
CeasedOfficers: outgoingAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Ceased, deltaData.officers[a._id], true)),
|
|
85963
|
+
EditedOfficers: editedAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Changed, deltaData.officers[a._id], true))
|
|
85964
|
+
};
|
|
85965
|
+
const cert = task._ext?.certified ?? {};
|
|
85966
|
+
const certEntityAddr = cert.address;
|
|
85967
|
+
const certifierCountry = normalizeCountryCode(certEntityAddr?.country ?? "");
|
|
85968
|
+
const certifierProvince = certEntityAddr?.province_state ?? "";
|
|
85969
|
+
const certifierProv = certifierCountry === "CA" ? CANProvinceToCode(certifierProvince) : certifierCountry === "US" ? USStateToCode(certifierProvince) : certifierProvince;
|
|
85970
|
+
const isOfficerCert = cert.type !== "Director";
|
|
85971
|
+
const certDeltaAddr = deltaData.certifiedBy?.address;
|
|
85972
|
+
const certStreetOnly = getAddressComponent(certEntityAddr, "Street Only");
|
|
85973
|
+
const { StreetType: certStreetType, StreetDirection: certStreetDir } = parseStreetAddress(certStreetOnly);
|
|
85974
|
+
const certifier = {
|
|
85975
|
+
PersonName: {
|
|
85976
|
+
FirstName: cert.firstName,
|
|
85977
|
+
LastName: cert.lastName,
|
|
85978
|
+
MiddleName: cert.middleName,
|
|
85979
|
+
Position: cert.type === "Officer" ? cert.officerTitle ?? null : null
|
|
85980
|
+
},
|
|
85981
|
+
PostCode: certEntityAddr?.postal_zip ?? null,
|
|
85982
|
+
AdditionalDetails: {
|
|
85983
|
+
Email: cert.email ?? null,
|
|
85984
|
+
CareOf: getAddressComponent(certEntityAddr, "Attention") || certEntityAddr?.attention || null,
|
|
85985
|
+
AddressType: "standard",
|
|
85986
|
+
StreetNumberSuffix: "",
|
|
85987
|
+
StreetNumber: certDeltaAddr?.streetNumber ?? getAddressComponent(certEntityAddr, "Street Number Only") ?? "",
|
|
85988
|
+
StreetName: (() => {
|
|
85989
|
+
const { StreetName } = parseStreetAddress(certStreetOnly);
|
|
85990
|
+
return certDeltaAddr?.streetName ?? StreetName ?? "";
|
|
85991
|
+
})(),
|
|
85992
|
+
StreetType: certDeltaAddr?.streetType ?? certStreetType ?? null,
|
|
85993
|
+
StreetDirection: certDeltaAddr?.streetDirection ?? (certStreetDir ? certStreetDir : null),
|
|
85994
|
+
UnitType: certDeltaAddr?.unitType ?? null,
|
|
85995
|
+
UnitNumber: certDeltaAddr?.unitNumber ?? getAddressComponent(certEntityAddr, "Suite/Apartment") ?? null,
|
|
85996
|
+
CityTown: certEntityAddr?.city ?? null,
|
|
85997
|
+
PostCode: certEntityAddr?.postal_zip ?? null,
|
|
85998
|
+
Prov: certifierProv,
|
|
85999
|
+
CountryCode: certifierCountry
|
|
86000
|
+
}
|
|
86001
|
+
};
|
|
86002
|
+
const regOfficeEntityAddr = findRegisteredOffice(task.entity.affiliations);
|
|
86003
|
+
const regCountry = normalizeCountryCode(regOfficeEntityAddr?.country ?? "");
|
|
86004
|
+
const regProvince = regOfficeEntityAddr?.province_state ?? "";
|
|
86005
|
+
const regRegion = regCountry === "CA" ? CANProvinceToCode(regProvince) : regCountry === "US" ? USStateToCode(regProvince) : regProvince;
|
|
86006
|
+
const regDelta = deltaData.registeredOfficeAddress;
|
|
86007
|
+
const initType = ["CA", "US"].includes(regCountry) ? `address${regCountry}` : "addressINTL";
|
|
86008
|
+
const RegisteredHeadOfficeAddress = {
|
|
86009
|
+
AddressStandardLot: "standard",
|
|
86010
|
+
CareOf: getAddressComponent(regOfficeEntityAddr, "Attention") || regOfficeEntityAddr?.attention || null,
|
|
86011
|
+
UnitType: regDelta.unitType ?? null,
|
|
86012
|
+
UnitNumber: regDelta.unitNumber ?? null,
|
|
86013
|
+
StreetNumber: regDelta.streetNumber,
|
|
86014
|
+
StreetNumberSuffix: "",
|
|
86015
|
+
StreetName: regDelta.streetName,
|
|
86016
|
+
StreetType: regDelta.streetType ?? null,
|
|
86017
|
+
StreetDirection: regDelta.streetDirection ?? null,
|
|
86018
|
+
StreetAddressContinued: getAddressComponent(regOfficeEntityAddr, "Suite/Apartment") ?? "",
|
|
86019
|
+
CityTown: regOfficeEntityAddr?.city ?? null,
|
|
86020
|
+
Region: regRegion,
|
|
86021
|
+
RegionName: regRegion,
|
|
86022
|
+
PostCode: regOfficeEntityAddr?.postal_zip ?? null,
|
|
86023
|
+
CountryCode: regCountry,
|
|
86024
|
+
InitType: initType
|
|
86025
|
+
};
|
|
86026
|
+
const contactAffiliation = task.entity.affiliations?.find((a) => a._id === deltaData.contactUid);
|
|
86027
|
+
const authorizationType = ["Director", "Officer"].includes(cert.type ?? "") ? AuthorizationType.DirectorOrOfficer : AuthorizationType.Other;
|
|
86028
|
+
const isOther = authorizationType === AuthorizationType.Other;
|
|
86029
|
+
const filingFormKey = getFilingFormKey(task);
|
|
86030
|
+
const filingFormType = getFilingFormType(task);
|
|
86031
|
+
const eCoreFilingFormType = getInnerECoreFilingFormType(task);
|
|
86032
|
+
const isAnnualReturn = isAnnualReturnTask(task);
|
|
86033
|
+
const annualReturnYear = isAnnualReturn ? (new Date(task._ext?._reference_date).getFullYear() || (/* @__PURE__ */ new Date()).getFullYear()).toString() : void 0;
|
|
86034
|
+
return {
|
|
86035
|
+
Jurisdiction: "ON",
|
|
86036
|
+
FilingFormType: filingFormType,
|
|
86037
|
+
PayloadType: 1,
|
|
86038
|
+
CurrentDataServiceOrderId: serviceOrderId,
|
|
86039
|
+
Filing: {
|
|
86040
|
+
Form: {
|
|
86041
|
+
[filingFormKey]: {
|
|
86042
|
+
FilingFormType: eCoreFilingFormType,
|
|
86043
|
+
CorporationInfo: {
|
|
86044
|
+
AuthorizedRepresentative: {
|
|
86045
|
+
FirstName: cert.firstName,
|
|
86046
|
+
LastName: cert.lastName,
|
|
86047
|
+
MiddleName: cert.middleName
|
|
86048
|
+
},
|
|
86049
|
+
CurrentData: __spreadProps(__spreadValues({
|
|
86050
|
+
Reference: deltaData.referenceNumber ?? null,
|
|
86051
|
+
Docket: deltaData.docketNumber ?? null,
|
|
86052
|
+
EntityIdentifier: Number(task.entity._profile.corp_number)
|
|
86053
|
+
}, isAnnualReturn ? { AnnualReturnYear: annualReturnYear } : {}), {
|
|
86054
|
+
ChangeCertification: {
|
|
86055
|
+
DirectorOfficerCertifier: !isOther ? __spreadProps(__spreadValues({}, certifier), {
|
|
86056
|
+
directorOrOfficer: isOfficerCert ? "officer" : "director"
|
|
86057
|
+
}) : null,
|
|
86058
|
+
IndividualCertifier: isOther ? certifier : null,
|
|
86059
|
+
AuthorizationType: authorizationType
|
|
86060
|
+
},
|
|
86061
|
+
ContactInformation: contactAffiliation ? OntarioUpdateMaintainFormHelper.generateContact(contactAffiliation) : null,
|
|
86062
|
+
RegisteredHeadOfficeAddress,
|
|
86063
|
+
ChangeDirectors,
|
|
86064
|
+
ChangeOfficers
|
|
86065
|
+
})
|
|
86066
|
+
}
|
|
86067
|
+
}
|
|
86068
|
+
}
|
|
86069
|
+
}
|
|
86070
|
+
};
|
|
86071
|
+
}
|
|
86072
|
+
var init_ontario_update_maintain_mapper = __esm({
|
|
86073
|
+
"src/app/helpers/mappers/ontario-update-maintain.mapper.ts"() {
|
|
86074
|
+
init_common_enums();
|
|
86075
|
+
init_app_enums();
|
|
86076
|
+
init_common_utils();
|
|
86077
|
+
init_address_utils();
|
|
86078
|
+
init_common_models();
|
|
86079
|
+
init_initial_return_enums();
|
|
86080
|
+
init_ontario_update_maintain_helper();
|
|
86081
|
+
init_InitialReturnMapping();
|
|
86082
|
+
}
|
|
86083
|
+
});
|
|
86084
|
+
|
|
85969
86085
|
// src/app/components/filing/filing.component.ts
|
|
85970
86086
|
function FilingComponent_Conditional_7_Template(rf, ctx) {
|
|
85971
86087
|
if (rf & 1) {
|
|
@@ -86108,6 +86224,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86108
86224
|
init_federal_formation_service();
|
|
86109
86225
|
init_ontario_update_maintain_service();
|
|
86110
86226
|
init_initial_return_payload_helper();
|
|
86227
|
+
init_ontario_formation_mapper();
|
|
86228
|
+
init_federal_formation_mapper();
|
|
86229
|
+
init_ontario_update_maintain_mapper();
|
|
86111
86230
|
init_core();
|
|
86112
86231
|
init_button();
|
|
86113
86232
|
FilingComponent = class _FilingComponent {
|
|
@@ -86180,17 +86299,20 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86180
86299
|
prevData = signal(void 0);
|
|
86181
86300
|
title = computed(() => {
|
|
86182
86301
|
const task = this.task();
|
|
86302
|
+
if (!task)
|
|
86303
|
+
return "";
|
|
86304
|
+
const jurisdiction = isOntarioTask(task) ? "Ontario" : "Federal";
|
|
86183
86305
|
if (isInitialReturn(task)) {
|
|
86184
|
-
return
|
|
86306
|
+
return `File ${jurisdiction} Initial Return`;
|
|
86185
86307
|
}
|
|
86186
86308
|
if (isNoticeOfChangeTask(task)) {
|
|
86187
|
-
return
|
|
86309
|
+
return `File ${jurisdiction} Notice of Change`;
|
|
86188
86310
|
}
|
|
86189
86311
|
if (isAnnualReturnTask(task)) {
|
|
86190
|
-
return
|
|
86312
|
+
return `File ${jurisdiction} Annual Return`;
|
|
86191
86313
|
}
|
|
86192
86314
|
if (isFormationTask2(task)) {
|
|
86193
|
-
return
|
|
86315
|
+
return `File ${jurisdiction} Articles of Incorporation`;
|
|
86194
86316
|
}
|
|
86195
86317
|
return "";
|
|
86196
86318
|
});
|
|
@@ -86200,6 +86322,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86200
86322
|
if (config2) {
|
|
86201
86323
|
this.updateMaintainService.setConfig(config2);
|
|
86202
86324
|
this.ontarioFormationService.setConfig(config2);
|
|
86325
|
+
this.federalFormationService.setConfig(config2);
|
|
86203
86326
|
}
|
|
86204
86327
|
});
|
|
86205
86328
|
addStylesVariables();
|
|
@@ -86216,7 +86339,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86216
86339
|
return;
|
|
86217
86340
|
}
|
|
86218
86341
|
if (isUpdateMaintain(task)) {
|
|
86219
|
-
if (deltaData) {
|
|
86342
|
+
if (deltaData.serviceOrderId) {
|
|
86220
86343
|
this.defineInitialStep();
|
|
86221
86344
|
}
|
|
86222
86345
|
const serviceOrderId = deltaData?.serviceOrderId;
|
|
@@ -86245,7 +86368,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86245
86368
|
this.errors.set([]);
|
|
86246
86369
|
const signature = this._signature();
|
|
86247
86370
|
if (signature) {
|
|
86248
|
-
const
|
|
86371
|
+
const requestBody = buildOntarioFormationValidateRequest(signature.task, deltaData);
|
|
86372
|
+
const response = yield this.ontarioFormationService.validate(signature, requestBody, this.validateOptions() ?? {});
|
|
86249
86373
|
const serviceOrderId = response["ServiceOrderId"] ?? "";
|
|
86250
86374
|
this.filingValidateSuccess.emit({
|
|
86251
86375
|
searchOrFilingType: "ontarioIncorporation",
|
|
@@ -86256,7 +86380,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86256
86380
|
documentName: this.validateOptions()?.documentName ?? "Incorporation Draft",
|
|
86257
86381
|
documentType: "pdf"
|
|
86258
86382
|
});
|
|
86259
|
-
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId, validatedData: JSON.parse(JSON.stringify(
|
|
86383
|
+
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId, validatedData: JSON.parse(JSON.stringify(requestBody)) }));
|
|
86260
86384
|
this.close.emit();
|
|
86261
86385
|
}
|
|
86262
86386
|
} catch (response) {
|
|
@@ -86277,7 +86401,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86277
86401
|
this.errors.set([]);
|
|
86278
86402
|
const signature = this._signature();
|
|
86279
86403
|
if (signature) {
|
|
86280
|
-
const
|
|
86404
|
+
const requestBody = buildFederalFormationValidateRequest(signature.task, deltaData);
|
|
86405
|
+
const response = yield this.federalFormationService.validate(signature, requestBody, this.validateOptions() ?? {});
|
|
86406
|
+
const serviceOrderId = response["ServiceOrderId"] ?? "";
|
|
86281
86407
|
this.filingValidateSuccess.emit({
|
|
86282
86408
|
searchOrFilingType: "ontarioIncorporation",
|
|
86283
86409
|
serviceOrderId: response["ServiceOrderId"] ?? "",
|
|
@@ -86287,7 +86413,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86287
86413
|
documentName: this.validateOptions()?.documentName ?? "Incorporation Draft",
|
|
86288
86414
|
documentType: "pdf"
|
|
86289
86415
|
});
|
|
86290
|
-
this.deltaDataChange.emit(deltaData);
|
|
86416
|
+
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId, validatedData: JSON.parse(JSON.stringify(requestBody)) }));
|
|
86291
86417
|
this.close.emit();
|
|
86292
86418
|
}
|
|
86293
86419
|
} catch (response) {
|
|
@@ -86303,6 +86429,28 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86303
86429
|
}
|
|
86304
86430
|
onFederalFormationSubmit() {
|
|
86305
86431
|
return __async(this, null, function* () {
|
|
86432
|
+
try {
|
|
86433
|
+
this.isLoading.set(true);
|
|
86434
|
+
this.errors.set([]);
|
|
86435
|
+
const signature = this._signature();
|
|
86436
|
+
if (signature) {
|
|
86437
|
+
const serviceOrderId = this.task()?.deltaData.serviceOrderId;
|
|
86438
|
+
if (serviceOrderId) {
|
|
86439
|
+
yield this.federalFormationService.submitFormationRequest(signature, serviceOrderId, this.validateOptions());
|
|
86440
|
+
this.close.emit();
|
|
86441
|
+
} else {
|
|
86442
|
+
console.error("There is no Service Id");
|
|
86443
|
+
}
|
|
86444
|
+
}
|
|
86445
|
+
} catch (response) {
|
|
86446
|
+
console.error(response);
|
|
86447
|
+
const errors = JSON.parse(JSON.stringify(response))?.validateResult?.["Errors"];
|
|
86448
|
+
if (errors?.length) {
|
|
86449
|
+
this.errors.set(this.parseError(errors));
|
|
86450
|
+
}
|
|
86451
|
+
} finally {
|
|
86452
|
+
this.isLoading.set(false);
|
|
86453
|
+
}
|
|
86306
86454
|
});
|
|
86307
86455
|
}
|
|
86308
86456
|
onOntarioFormationSubmit() {
|
|
@@ -86355,8 +86503,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86355
86503
|
const signature = this._signature();
|
|
86356
86504
|
if (signature) {
|
|
86357
86505
|
try {
|
|
86358
|
-
|
|
86359
|
-
this.
|
|
86506
|
+
const requestBody = buildOntarioUpdateMaintainValidationRequest(task, deltaData, this.serviceOrderId);
|
|
86507
|
+
yield this.updateMaintainService.submitInitialReturnValidationToECore(signature, requestBody, this.validateOptions());
|
|
86508
|
+
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId: this.serviceOrderId, validatedData: JSON.parse(JSON.stringify(requestBody)) }));
|
|
86360
86509
|
this.close.emit();
|
|
86361
86510
|
} catch (response) {
|
|
86362
86511
|
const errors = JSON.parse(JSON.stringify(response))?.validateResult?.["Errors"];
|
|
@@ -86432,14 +86581,35 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86432
86581
|
defineInitialStep() {
|
|
86433
86582
|
const task = this.task();
|
|
86434
86583
|
const taskFromDeltaData = task?.deltaData?.validatedData;
|
|
86435
|
-
|
|
86584
|
+
const currentMappedPayload = task ? this.getMappedValidatedPayload(task) : void 0;
|
|
86585
|
+
if (!taskFromDeltaData || !task || !currentMappedPayload) {
|
|
86436
86586
|
this.activeStep.set(Step.Validate);
|
|
86437
86587
|
return;
|
|
86438
86588
|
}
|
|
86439
|
-
const dataWasChanged = !deepEqual(
|
|
86589
|
+
const dataWasChanged = !deepEqual(currentMappedPayload, taskFromDeltaData);
|
|
86440
86590
|
this.dataWasChanged.set(dataWasChanged);
|
|
86441
86591
|
this.activeStep.set(dataWasChanged ? Step.Validate : Step.FilingPreview);
|
|
86442
86592
|
}
|
|
86593
|
+
getMappedValidatedPayload(task) {
|
|
86594
|
+
const deltaData = task?.deltaData;
|
|
86595
|
+
if (!deltaData) {
|
|
86596
|
+
return void 0;
|
|
86597
|
+
}
|
|
86598
|
+
if (isFormationTask2(task)) {
|
|
86599
|
+
if (isOntarioTask(task)) {
|
|
86600
|
+
return buildOntarioFormationValidateRequest(task, deltaData);
|
|
86601
|
+
}
|
|
86602
|
+
return buildFederalFormationValidateRequest(task, deltaData);
|
|
86603
|
+
}
|
|
86604
|
+
if (isUpdateMaintain(task) && isOntarioTask(task)) {
|
|
86605
|
+
const serviceOrderId = deltaData?.serviceOrderId ?? this.serviceOrderId;
|
|
86606
|
+
if (!serviceOrderId) {
|
|
86607
|
+
return void 0;
|
|
86608
|
+
}
|
|
86609
|
+
return buildOntarioUpdateMaintainValidationRequest(task, deltaData, serviceOrderId);
|
|
86610
|
+
}
|
|
86611
|
+
return void 0;
|
|
86612
|
+
}
|
|
86443
86613
|
static \u0275fac = function FilingComponent_Factory(__ngFactoryType__) {
|
|
86444
86614
|
return new (__ngFactoryType__ || _FilingComponent)();
|
|
86445
86615
|
};
|
|
@@ -86494,7 +86664,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86494
86664
|
MatIcon,
|
|
86495
86665
|
FederalComponent,
|
|
86496
86666
|
OntarioComponent
|
|
86497
|
-
], styles: ["/* src/app/components/filing/filing.component.scss */\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}\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.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'], encapsulation: 3 });
|
|
86667
|
+
], styles: ["/* src/app/components/filing/filing.component.scss */\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'], encapsulation: 3 });
|
|
86498
86668
|
};
|
|
86499
86669
|
(() => {
|
|
86500
86670
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(FilingComponent, [{
|
|
@@ -86570,11 +86740,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86570
86740
|
}\r
|
|
86571
86741
|
</div>\r
|
|
86572
86742
|
</div>\r
|
|
86573
|
-
`, styles: ["/* src/app/components/filing/filing.component.scss */\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}\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.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'] }]
|
|
86743
|
+
`, styles: ["/* src/app/components/filing/filing.component.scss */\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'] }]
|
|
86574
86744
|
}], () => [], null);
|
|
86575
86745
|
})();
|
|
86576
86746
|
(() => {
|
|
86577
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber:
|
|
86747
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber: 65 });
|
|
86578
86748
|
})();
|
|
86579
86749
|
}
|
|
86580
86750
|
});
|
|
@@ -90760,6 +90930,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
90760
90930
|
en_default = {
|
|
90761
90931
|
"Add Individuals With Significant Control": "Add Individuals With Significant Control",
|
|
90762
90932
|
"File Ontario Articles of Incorporation": "File Ontario Articles of Incorporation",
|
|
90933
|
+
"File Ontario Initial Return": "File Ontario Initial Return",
|
|
90934
|
+
"File Ontario Notice of Change": "File Ontario Notice of Change",
|
|
90935
|
+
"File Ontario Annual Return": "File Ontario Annual Return",
|
|
90936
|
+
"File Federal Articles of Incorporation": "File Federal Articles of Incorporation",
|
|
90937
|
+
"File Federal Initial Return": "File Federal Initial Return",
|
|
90938
|
+
"File Federal Notice of Change": "File Federal Notice of Change",
|
|
90939
|
+
"File Federal Annual Return": "File Federal Annual Return",
|
|
90763
90940
|
"File Initial Return": "File Initial Return",
|
|
90764
90941
|
"You have unsaved changes": "You have unsaved changes",
|
|
90765
90942
|
"Do you want to save before closing?": "Do you want to save before closing?",
|
|
@@ -91061,6 +91238,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
91061
91238
|
fr_default = {
|
|
91062
91239
|
"Add Individuals With Significant Control": "Ajouter des particuliers ayant un contr\xF4le important",
|
|
91063
91240
|
"File Ontario Articles of Incorporation": "D\xE9poser les statuts constitutifs de l'Ontario",
|
|
91241
|
+
"File Ontario Initial Return": "D\xE9claration initiale de l'Ontario",
|
|
91242
|
+
"File Ontario Notice of Change": "D\xE9poser un avis de modification de l'Ontario",
|
|
91243
|
+
"File Ontario Annual Return": "D\xE9poser le rapport annuel de l'Ontario",
|
|
91244
|
+
"File Federal Articles of Incorporation": "D\xE9poser les statuts constitutifs f\xE9d\xE9raux",
|
|
91245
|
+
"File Federal Initial Return": "D\xE9claration initiale f\xE9d\xE9rale",
|
|
91246
|
+
"File Federal Notice of Change": "D\xE9poser un avis de modification f\xE9d\xE9ral",
|
|
91247
|
+
"File Federal Annual Return": "D\xE9poser le rapport annuel f\xE9d\xE9ral",
|
|
91064
91248
|
"File Initial Return": "D\xE9claration initiale",
|
|
91065
91249
|
"You have unsaved changes": "Vous avez des modifications non enregistr\xE9es",
|
|
91066
91250
|
"Do you want to save before closing?": "Voulez-vous enregistrer avant de fermer ?",
|