@dyedurham/search-and-file-widget 1.5.8 → 1.5.10
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 +1195 -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";
|
|
@@ -50735,6 +50739,33 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50735
50739
|
}
|
|
50736
50740
|
return obj;
|
|
50737
50741
|
}
|
|
50742
|
+
function copyWithShape(shape, source) {
|
|
50743
|
+
if (shape === null || shape === void 0) {
|
|
50744
|
+
return source;
|
|
50745
|
+
}
|
|
50746
|
+
if (Array.isArray(shape)) {
|
|
50747
|
+
if (!Array.isArray(source)) {
|
|
50748
|
+
return [];
|
|
50749
|
+
}
|
|
50750
|
+
if (!shape.length) {
|
|
50751
|
+
return source.map((item) => copyWithShape(item, item));
|
|
50752
|
+
}
|
|
50753
|
+
return source.map((item) => copyWithShape(shape[0], item));
|
|
50754
|
+
}
|
|
50755
|
+
if (typeof shape !== "object") {
|
|
50756
|
+
return source;
|
|
50757
|
+
}
|
|
50758
|
+
if (source === null || source === void 0 || typeof source !== "object") {
|
|
50759
|
+
return source;
|
|
50760
|
+
}
|
|
50761
|
+
const result = {};
|
|
50762
|
+
for (const key of Object.keys(shape)) {
|
|
50763
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
50764
|
+
result[key] = copyWithShape(shape[key], source[key]);
|
|
50765
|
+
}
|
|
50766
|
+
}
|
|
50767
|
+
return result;
|
|
50768
|
+
}
|
|
50738
50769
|
function toYyyyMmDd(d) {
|
|
50739
50770
|
if (!d)
|
|
50740
50771
|
return void 0;
|
|
@@ -50770,7 +50801,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50770
50801
|
const statusStr = status ? String(status) : "Failure";
|
|
50771
50802
|
return new Error(msgs.length ? `${prefix} (HTTP ${httpStatus}, ${statusStr}): ${msgs.join(" | ")}` : `${prefix} (HTTP ${httpStatus}, ${statusStr}).`);
|
|
50772
50803
|
}
|
|
50773
|
-
function deepEqual(a, b
|
|
50804
|
+
function deepEqual(a, b) {
|
|
50774
50805
|
if (a === b)
|
|
50775
50806
|
return true;
|
|
50776
50807
|
if (Number.isNaN(a) && Number.isNaN(b))
|
|
@@ -50784,20 +50815,19 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50784
50815
|
if (a.length !== b.length)
|
|
50785
50816
|
return false;
|
|
50786
50817
|
for (let i = 0; i < a.length; i++) {
|
|
50787
|
-
if (!deepEqual(a[i], b[i]
|
|
50818
|
+
if (!deepEqual(a[i], b[i]))
|
|
50788
50819
|
return false;
|
|
50789
50820
|
}
|
|
50790
50821
|
return true;
|
|
50791
50822
|
}
|
|
50792
|
-
const
|
|
50793
|
-
const
|
|
50794
|
-
const keysB = Object.keys(b).filter((k) => !omitSet.has(k));
|
|
50823
|
+
const keysA = Object.keys(a).filter((key) => a[key] !== void 0);
|
|
50824
|
+
const keysB = Object.keys(b).filter((key) => b[key] !== void 0);
|
|
50795
50825
|
if (keysA.length !== keysB.length)
|
|
50796
50826
|
return false;
|
|
50797
50827
|
for (const key of keysA) {
|
|
50798
50828
|
if (!Object.prototype.hasOwnProperty.call(b, key))
|
|
50799
50829
|
return false;
|
|
50800
|
-
if (!deepEqual(a[key], b[key]
|
|
50830
|
+
if (!deepEqual(a[key], b[key])) {
|
|
50801
50831
|
return false;
|
|
50802
50832
|
}
|
|
50803
50833
|
}
|
|
@@ -50876,6 +50906,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
50876
50906
|
const countrySummary = [city, province, postalCode, country].filter(Boolean).join(", ");
|
|
50877
50907
|
return `${[careOf, unitSummary, streetSummary, countrySummary].filter(Boolean).join(", ")}`;
|
|
50878
50908
|
}
|
|
50909
|
+
function getContactDetailsPreview(email, phone, t) {
|
|
50910
|
+
const details = [email, phone].filter((value) => Boolean(value?.trim()));
|
|
50911
|
+
if (details.length) {
|
|
50912
|
+
return details.join(" | ");
|
|
50913
|
+
}
|
|
50914
|
+
return t ? t("Not specified") : "Not specified";
|
|
50915
|
+
}
|
|
50879
50916
|
function affiliationTypeToChipType(affiliationType) {
|
|
50880
50917
|
if (!affiliationType) {
|
|
50881
50918
|
return;
|
|
@@ -51427,7 +51464,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51427
51464
|
const corporationNameType = form.get(FormationFormControls.CorporationNameType)?.value;
|
|
51428
51465
|
const isNumbered = corporationNameType === NameType.Numbered;
|
|
51429
51466
|
if (isNumbered) {
|
|
51430
|
-
form.get(FormationFormControls.
|
|
51467
|
+
form.get(FormationFormControls.wasLegalOpinionObtained)?.setValue(false, { emitEvent: false });
|
|
51431
51468
|
}
|
|
51432
51469
|
if ([NameType.NamedEnglish, NameType.NamedBilingual, NameType.NamedCombined].includes(corporationNameType)) {
|
|
51433
51470
|
form.get(FormationFormControls.ProposedCorporationNameEng)?.setValue(name, { emitEvent: false });
|
|
@@ -51528,7 +51565,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51528
51565
|
type: FormType.Checkbox,
|
|
51529
51566
|
placeholder: "",
|
|
51530
51567
|
label: "A legal opinion was obtained to use the proposed name",
|
|
51531
|
-
formControlName: FormationFormControls.
|
|
51568
|
+
formControlName: FormationFormControls.wasLegalOpinionObtained,
|
|
51532
51569
|
required: true,
|
|
51533
51570
|
isVisible: (form) => form.get(FormationFormControls.CorporationNameType)?.value !== NameType.Numbered,
|
|
51534
51571
|
class: "span-12"
|
|
@@ -51559,7 +51596,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51559
51596
|
];
|
|
51560
51597
|
};
|
|
51561
51598
|
generateOntarioFormationFormContactControl = (contacts) => {
|
|
51562
|
-
const contactsOptions = contacts.map((contact) => ({ label:
|
|
51599
|
+
const contactsOptions = contacts.map((contact) => ({ label: contact.participant._profile.name ?? "", value: contact._id }));
|
|
51563
51600
|
return [
|
|
51564
51601
|
{
|
|
51565
51602
|
type: FormType.Select,
|
|
@@ -51574,7 +51611,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51574
51611
|
dynamicLabel: (form, t) => {
|
|
51575
51612
|
const id = form.get(FormationFormControls.Contact)?.value;
|
|
51576
51613
|
const contact = contacts.find((contact2) => contact2._id === id);
|
|
51577
|
-
|
|
51614
|
+
const email = contact?.addresses[0]?.emails?.primary;
|
|
51615
|
+
const phone = contact?.addresses[0]?.contact_numbers?.primary;
|
|
51616
|
+
return `<span class="body-1-semibold">${t("Contact Details")}:</span> ${getContactDetailsPreview(email, phone, t)}`;
|
|
51578
51617
|
},
|
|
51579
51618
|
formControlName: "",
|
|
51580
51619
|
required: false,
|
|
@@ -51592,6 +51631,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51592
51631
|
required: true,
|
|
51593
51632
|
class: "span-12",
|
|
51594
51633
|
options: []
|
|
51634
|
+
},
|
|
51635
|
+
{
|
|
51636
|
+
type: FormType.Text,
|
|
51637
|
+
dynamicLabel: (_, t) => `<span class="body-1-semibold">${t("Confirm Address Parts")}:</span>`,
|
|
51638
|
+
placeholder: "",
|
|
51639
|
+
class: "span-12",
|
|
51640
|
+
formControlName: ""
|
|
51595
51641
|
}
|
|
51596
51642
|
];
|
|
51597
51643
|
FORMATION_DELTA_CARD_FORM_CORPORATION_LEGAL_OPINION_CONFIRM_ADDRESS = [
|
|
@@ -51674,6 +51720,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51674
51720
|
const delta = task.deltaData;
|
|
51675
51721
|
const officialBusinessEmail = address?.communications?.find((c) => c.type === "Business Email")?.value;
|
|
51676
51722
|
const entityDetailsDelta = delta?.entityDetails;
|
|
51723
|
+
const referenceNumbers = delta?.referenceNumbers;
|
|
51677
51724
|
if (directors.length) {
|
|
51678
51725
|
directors.forEach((director) => {
|
|
51679
51726
|
const participantId = director.participant._id;
|
|
@@ -51691,11 +51738,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51691
51738
|
registeredOfficeAddress = this.generateAddressFormGroup(address, delta?.registeredOfficeAddress);
|
|
51692
51739
|
const config2 = {};
|
|
51693
51740
|
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
|
|
51741
|
+
const naicsData = task.entity._profile?.naics;
|
|
51742
|
+
const primaryActivity = `${naicsData?.code} - ${naicsData?.description}`;
|
|
51696
51743
|
const corporationNameType = entityDetailsDelta?.corporationNameType || (task._ext._numbered_company === true ? NameType.Numbered : NameType.NamedEnglish);
|
|
51697
51744
|
const isBilingualName = corporationNameType === NameType.NamedBilingual;
|
|
51698
|
-
config2[FormationFormGroups.ReferenceNumbers] = this.generateReferenceNumbersFormGroup(
|
|
51745
|
+
config2[FormationFormGroups.ReferenceNumbers] = this.generateReferenceNumbersFormGroup(referenceNumbers);
|
|
51699
51746
|
config2[FormationFormGroups.CorporationDetails] = new FormGroup({
|
|
51700
51747
|
[FormationFormControls.CorporationNameType]: new FormControl(corporationNameType ?? "", Validators.required),
|
|
51701
51748
|
[FormationFormControls.LegalEnding]: new FormControl(entityDetailsDelta?.legalIdentifier ?? task.entity._profile.legal_entity_identifier, Validators.required),
|
|
@@ -51705,7 +51752,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51705
51752
|
[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
51753
|
[FormationFormControls.NuansReportReferenceFr]: new FormControl(entityDetailsDelta?.nuansReportFrenchReferenceNumber ?? "", [requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedFrench), requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedBilingual)]),
|
|
51707
51754
|
[FormationFormControls.NuansReportDateFr]: new FormControl(entityDetailsDelta?.nuansReportFrenchReferenceDate ?? "", [requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedFrench), requiredIfValue(FormationFormControls.CorporationNameType, NameType.NamedBilingual)]),
|
|
51708
|
-
[FormationFormControls.
|
|
51755
|
+
[FormationFormControls.wasLegalOpinionObtained]: new FormControl(delta?.legalOpinion?.wasLegalOpinionObtained ?? false),
|
|
51709
51756
|
[FormationFormControls.RequestedDateForIncorporation]: new FormControl({ value: requestedDate, disabled: true }),
|
|
51710
51757
|
[FormationFormControls.PrimaryActivity]: new FormControl({ value: primaryActivity, disabled: true }),
|
|
51711
51758
|
[FormationFormControls.OfficialEmail]: new FormControl({ value: officialBusinessEmail, disabled: true })
|
|
@@ -51714,12 +51761,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
51714
51761
|
if (registeredOfficeAddress) {
|
|
51715
51762
|
config2[FormationFormGroups.RegisteredOfficeAddress] = registeredOfficeAddress;
|
|
51716
51763
|
}
|
|
51717
|
-
task.entity._articles?.restrictions || "None";
|
|
51764
|
+
const restrictionsOnBusiness = task.entity._articles?.restrictions || "None";
|
|
51718
51765
|
const restrictionsOnShareClasses = task.entity._articles?.share_terms || "";
|
|
51719
51766
|
const restrictionsOnShareRights = task.entity._articles?.share_restrictions_text || "None";
|
|
51720
51767
|
const restrictionsOnShareTransfers = task.entity._articles?.transfer_restrictions_text || "None";
|
|
51721
51768
|
const otherProvisions = task.entity._articles?.other_provisions || "None";
|
|
51722
51769
|
config2[FormationFormGroups.SharesAndRestrictions] = new FormGroup({
|
|
51770
|
+
[FormationFormControls.RestrictionsOnBusiness]: new FormControl({ value: restrictionsOnBusiness, disabled: true }),
|
|
51723
51771
|
[FormationFormControls.RestrictionsOnShareClasses]: new FormControl({ value: restrictionsOnShareClasses, disabled: true }),
|
|
51724
51772
|
[FormationFormControls.RestrictionsOnShareRights]: new FormControl({ value: restrictionsOnShareRights, disabled: true }),
|
|
51725
51773
|
[FormationFormControls.RestrictionsOnShareTransfers]: new FormControl({ value: restrictionsOnShareTransfers, disabled: true }),
|
|
@@ -76417,11 +76465,19 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
76417
76465
|
* the label after an option is selected.
|
|
76418
76466
|
*/
|
|
76419
76467
|
getDisplayFn(field) {
|
|
76468
|
+
const form = this.form();
|
|
76420
76469
|
return (value) => {
|
|
76421
76470
|
if (value === null || value === void 0 || value === "")
|
|
76422
76471
|
return "";
|
|
76423
|
-
const
|
|
76424
|
-
|
|
76472
|
+
const staticOpt = (field.options ?? []).find((o) => o.value === value);
|
|
76473
|
+
if (staticOpt)
|
|
76474
|
+
return staticOpt.label;
|
|
76475
|
+
if (field.dynamicOptions) {
|
|
76476
|
+
const dynOpt = field.dynamicOptions(form).find((o) => o.value === value);
|
|
76477
|
+
if (dynOpt)
|
|
76478
|
+
return dynOpt.label;
|
|
76479
|
+
}
|
|
76480
|
+
return String(value);
|
|
76425
76481
|
};
|
|
76426
76482
|
}
|
|
76427
76483
|
/**
|
|
@@ -76447,7 +76503,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
76447
76503
|
{ provide: DateAdapter, useClass: MomentDateAdapter },
|
|
76448
76504
|
{ provide: MAT_DATE_FORMATS, useValue: MY_DATE_FORMATS },
|
|
76449
76505
|
{ 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) {
|
|
76506
|
+
])], 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
76507
|
if (rf & 1) {
|
|
76452
76508
|
\u0275\u0275declareLet(0)(1);
|
|
76453
76509
|
\u0275\u0275elementStart(2, "section")(3, "div", 2);
|
|
@@ -76597,7 +76653,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
76597
76653
|
>\r
|
|
76598
76654
|
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;\r
|
|
76599
76655
|
<div>\r
|
|
76600
|
-
<span class="body-1-regular" [class.warning]="!!previousValue">{{\r
|
|
76656
|
+
<span class="body-1-regular black" [class.warning]="!!previousValue">{{\r
|
|
76601
76657
|
label\r
|
|
76602
76658
|
}}</span>\r
|
|
76603
76659
|
@if (previousValue != null) {\r
|
|
@@ -77292,10 +77348,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77292
77348
|
}
|
|
77293
77349
|
function OntarioIncorporationFormComponent_Conditional_14_Template(rf, ctx) {
|
|
77294
77350
|
if (rf & 1) {
|
|
77295
|
-
\u0275\u0275elementStart(0, "expandable-list-card",
|
|
77351
|
+
\u0275\u0275elementStart(0, "expandable-list-card", 6);
|
|
77296
77352
|
\u0275\u0275element(1, "p", 11);
|
|
77297
77353
|
\u0275\u0275elementEnd();
|
|
77298
|
-
\u0275\u0275text(2, "> ");
|
|
77299
77354
|
}
|
|
77300
77355
|
if (rf & 2) {
|
|
77301
77356
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
@@ -77308,7 +77363,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77308
77363
|
}
|
|
77309
77364
|
function OntarioIncorporationFormComponent_Conditional_16_Template(rf, ctx) {
|
|
77310
77365
|
if (rf & 1) {
|
|
77311
|
-
\u0275\u0275elementStart(0, "expandable-card",
|
|
77366
|
+
\u0275\u0275elementStart(0, "expandable-card", 7);
|
|
77312
77367
|
\u0275\u0275element(1, "filing-form-group", 10);
|
|
77313
77368
|
\u0275\u0275elementEnd();
|
|
77314
77369
|
}
|
|
@@ -77322,7 +77377,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77322
77377
|
}
|
|
77323
77378
|
function OntarioIncorporationFormComponent_Conditional_18_Template(rf, ctx) {
|
|
77324
77379
|
if (rf & 1) {
|
|
77325
|
-
\u0275\u0275element(0, "expandable-list-card",
|
|
77380
|
+
\u0275\u0275element(0, "expandable-list-card", 6);
|
|
77326
77381
|
}
|
|
77327
77382
|
if (rf & 2) {
|
|
77328
77383
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
@@ -77384,9 +77439,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77384
77439
|
return "";
|
|
77385
77440
|
}
|
|
77386
77441
|
if (articles.min_directors === articles.max_directors) {
|
|
77387
|
-
return `<span class="body-1-semibold">Number of Directors:</span> ${articles.min_directors}`;
|
|
77442
|
+
return `<span class="body-1-semibold black">Number of Directors:</span> ${articles.min_directors}`;
|
|
77388
77443
|
}
|
|
77389
|
-
return `<span class="body-1-semibold">Minimum and Maximum Number of Directors:</span> ${articles.min_directors}-${articles.max_directors}`;
|
|
77444
|
+
return `<span class="body-1-semibold black">Minimum and Maximum Number of Directors:</span> ${articles.min_directors}-${articles.max_directors}`;
|
|
77390
77445
|
});
|
|
77391
77446
|
constructor() {
|
|
77392
77447
|
effect(() => {
|
|
@@ -77396,13 +77451,15 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77396
77451
|
effect(() => {
|
|
77397
77452
|
const task = this.task();
|
|
77398
77453
|
if (task) {
|
|
77399
|
-
const contacts = task.entity.affiliations.filter((a) =>
|
|
77454
|
+
const contacts = task.entity.affiliations.filter((a) => {
|
|
77455
|
+
return a.role.role_name === "Contact";
|
|
77456
|
+
});
|
|
77400
77457
|
this.contactsFields = generateOntarioFormationFormContactControl(contacts);
|
|
77401
77458
|
}
|
|
77402
77459
|
});
|
|
77403
77460
|
}
|
|
77404
77461
|
get isLegalOpinion() {
|
|
77405
|
-
return !!this.form().get(this.groups.CorporationDetails)?.get(this.controls.
|
|
77462
|
+
return !!this.form().get(this.groups.CorporationDetails)?.get(this.controls.wasLegalOpinionObtained)?.value;
|
|
77406
77463
|
}
|
|
77407
77464
|
getFormGroup(key) {
|
|
77408
77465
|
return this.form().get(key);
|
|
@@ -77413,7 +77470,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77413
77470
|
static \u0275fac = function OntarioIncorporationFormComponent_Factory(__ngFactoryType__) {
|
|
77414
77471
|
return new (__ngFactoryType__ || _OntarioIncorporationFormComponent)();
|
|
77415
77472
|
};
|
|
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, "
|
|
77473
|
+
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
77474
|
if (rf & 1) {
|
|
77418
77475
|
\u0275\u0275elementStart(0, "div", 0);
|
|
77419
77476
|
\u0275\u0275template(1, OntarioIncorporationFormComponent_Conditional_1_Template, 1, 1, "alert", 1)(2, OntarioIncorporationFormComponent_Conditional_2_Template, 1, 1, "alert", 2);
|
|
@@ -77425,11 +77482,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77425
77482
|
\u0275\u0275declareLet(9);
|
|
77426
77483
|
\u0275\u0275template(10, OntarioIncorporationFormComponent_Conditional_10_Template, 2, 6, "expandable-card", 5);
|
|
77427
77484
|
\u0275\u0275declareLet(11)(12)(13);
|
|
77428
|
-
\u0275\u0275template(14, OntarioIncorporationFormComponent_Conditional_14_Template,
|
|
77485
|
+
\u0275\u0275template(14, OntarioIncorporationFormComponent_Conditional_14_Template, 2, 8, "expandable-list-card", 6);
|
|
77429
77486
|
\u0275\u0275declareLet(15);
|
|
77430
|
-
\u0275\u0275template(16, OntarioIncorporationFormComponent_Conditional_16_Template, 2, 5, "expandable-card",
|
|
77487
|
+
\u0275\u0275template(16, OntarioIncorporationFormComponent_Conditional_16_Template, 2, 5, "expandable-card", 7);
|
|
77431
77488
|
\u0275\u0275declareLet(17);
|
|
77432
|
-
\u0275\u0275template(18, OntarioIncorporationFormComponent_Conditional_18_Template, 1, 7, "expandable-list-card",
|
|
77489
|
+
\u0275\u0275template(18, OntarioIncorporationFormComponent_Conditional_18_Template, 1, 7, "expandable-list-card", 6);
|
|
77433
77490
|
\u0275\u0275declareLet(19);
|
|
77434
77491
|
\u0275\u0275template(20, OntarioIncorporationFormComponent_Conditional_20_Template, 2, 6, "expandable-card", 8);
|
|
77435
77492
|
\u0275\u0275elementEnd()();
|
|
@@ -77491,7 +77548,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
77491
77548
|
FilingFormGroupComponent,
|
|
77492
77549
|
ExpandableListCardComponent,
|
|
77493
77550
|
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
|
|
77551
|
+
], 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
77552
|
}], () => [], null);
|
|
77496
77553
|
})();
|
|
77497
77554
|
(() => {
|
|
@@ -78156,7 +78213,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
78156
78213
|
[AffiliationAddressType.InternationalSuite]: generateCertifiedByFields(ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_INTERNATIONAL_SUIT)
|
|
78157
78214
|
};
|
|
78158
78215
|
generateOntarioInitialReturnFormContactControl = (contacts) => {
|
|
78159
|
-
const contactsOptions = contacts.map((contact) => ({ label:
|
|
78216
|
+
const contactsOptions = contacts.map((contact) => ({ label: contact.participant._profile.name ?? "", value: contact._id }));
|
|
78160
78217
|
return [
|
|
78161
78218
|
{
|
|
78162
78219
|
type: FormType.Select,
|
|
@@ -78171,7 +78228,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
78171
78228
|
dynamicLabel: (form, t) => {
|
|
78172
78229
|
const id = form.get(IRFormControls.Contact)?.value;
|
|
78173
78230
|
const contact = contacts.find((contact2) => contact2._id === id);
|
|
78174
|
-
|
|
78231
|
+
const email = contact?.addresses[0]?.emails?.primary;
|
|
78232
|
+
const phone = contact?.addresses[0]?.contact_numbers?.primary;
|
|
78233
|
+
return `<span class="body-1-regular grey">${t("Contact Details")}:</span> ${getContactDetailsPreview(email, phone, t)}`;
|
|
78175
78234
|
},
|
|
78176
78235
|
formControlName: "",
|
|
78177
78236
|
required: false,
|
|
@@ -80979,7 +81038,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80979
81038
|
init_core();
|
|
80980
81039
|
init_button();
|
|
80981
81040
|
init_dialog2();
|
|
80982
|
-
init_icon();
|
|
80983
81041
|
init_confirm_modal_constants();
|
|
80984
81042
|
init_ngx_translate_core();
|
|
80985
81043
|
init_core();
|
|
@@ -80992,6 +81050,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80992
81050
|
*
|
|
80993
81051
|
*/
|
|
80994
81052
|
ngOnInit() {
|
|
81053
|
+
this.dialogRef.disableClose = true;
|
|
80995
81054
|
this.modalConfig.update((value) => __spreadValues(__spreadValues({}, value), this.data ?? {}));
|
|
80996
81055
|
}
|
|
80997
81056
|
/**
|
|
@@ -81003,42 +81062,34 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81003
81062
|
static \u0275fac = function ConfirmModalComponent_Factory(__ngFactoryType__) {
|
|
81004
81063
|
return new (__ngFactoryType__ || _ConfirmModalComponent)();
|
|
81005
81064
|
};
|
|
81006
|
-
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _ConfirmModalComponent, selectors: [["confirm-modal"]], decls:
|
|
81065
|
+
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
81066
|
if (rf & 1) {
|
|
81008
81067
|
const _r1 = \u0275\u0275getCurrentView();
|
|
81009
81068
|
\u0275\u0275declareLet(0);
|
|
81010
81069
|
\u0275\u0275elementStart(1, "div", 0)(2, "div", 1)(3, "h1", 2);
|
|
81011
81070
|
\u0275\u0275template(4, ConfirmModalComponent_Conditional_4_Template, 2, 0, "span", 3);
|
|
81012
81071
|
\u0275\u0275text(5);
|
|
81072
|
+
\u0275\u0275elementEnd()();
|
|
81073
|
+
\u0275\u0275elementStart(6, "div", 4);
|
|
81074
|
+
\u0275\u0275text(7);
|
|
81013
81075
|
\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() {
|
|
81076
|
+
\u0275\u0275elementStart(8, "div", 5)(9, "button", 6);
|
|
81077
|
+
\u0275\u0275listener("click", function ConfirmModalComponent_Template_button_click_9_listener() {
|
|
81027
81078
|
\u0275\u0275restoreView(_r1);
|
|
81028
81079
|
return \u0275\u0275resetView(ctx.closeModal());
|
|
81029
81080
|
});
|
|
81030
|
-
\u0275\u0275elementStart(
|
|
81031
|
-
\u0275\u0275text(
|
|
81032
|
-
\u0275\u0275pipe(
|
|
81081
|
+
\u0275\u0275elementStart(10, "span", 7);
|
|
81082
|
+
\u0275\u0275text(11);
|
|
81083
|
+
\u0275\u0275pipe(12, "translate");
|
|
81033
81084
|
\u0275\u0275elementEnd()();
|
|
81034
|
-
\u0275\u0275elementStart(
|
|
81035
|
-
\u0275\u0275listener("click", function
|
|
81085
|
+
\u0275\u0275elementStart(13, "button", 8);
|
|
81086
|
+
\u0275\u0275listener("click", function ConfirmModalComponent_Template_button_click_13_listener() {
|
|
81036
81087
|
\u0275\u0275restoreView(_r1);
|
|
81037
81088
|
return \u0275\u0275resetView(ctx.closeModal(true));
|
|
81038
81089
|
});
|
|
81039
|
-
\u0275\u0275elementStart(
|
|
81040
|
-
\u0275\u0275text(
|
|
81041
|
-
\u0275\u0275pipe(
|
|
81090
|
+
\u0275\u0275elementStart(14, "span", 7);
|
|
81091
|
+
\u0275\u0275text(15);
|
|
81092
|
+
\u0275\u0275pipe(16, "translate");
|
|
81042
81093
|
\u0275\u0275elementEnd()()()();
|
|
81043
81094
|
}
|
|
81044
81095
|
if (rf & 2) {
|
|
@@ -81047,23 +81098,23 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81047
81098
|
\u0275\u0275conditional(config_r2.icon ? 4 : -1);
|
|
81048
81099
|
\u0275\u0275advance();
|
|
81049
81100
|
\u0275\u0275textInterpolate1(" ", config_r2.title, " ");
|
|
81050
|
-
\u0275\u0275advance(
|
|
81101
|
+
\u0275\u0275advance(2);
|
|
81051
81102
|
\u0275\u0275textInterpolate(config_r2.text);
|
|
81052
81103
|
\u0275\u0275advance(4);
|
|
81053
|
-
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(
|
|
81104
|
+
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(12, 5, config_r2.cancelButton));
|
|
81054
81105
|
\u0275\u0275advance(4);
|
|
81055
|
-
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(
|
|
81106
|
+
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(16, 7, config_r2.confirmButton));
|
|
81056
81107
|
}
|
|
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 });
|
|
81108
|
+
}, 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
81109
|
};
|
|
81059
81110
|
(() => {
|
|
81060
81111
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ConfirmModalComponent, [{
|
|
81061
81112
|
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'] }]
|
|
81113
|
+
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
81114
|
}], null, null);
|
|
81064
81115
|
})();
|
|
81065
81116
|
(() => {
|
|
81066
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ConfirmModalComponent, { className: "ConfirmModalComponent", filePath: "src/app/components/confirm-modal/confirm-modal.component.ts", lineNumber:
|
|
81117
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(ConfirmModalComponent, { className: "ConfirmModalComponent", filePath: "src/app/components/confirm-modal/confirm-modal.component.ts", lineNumber: 24 });
|
|
81067
81118
|
})();
|
|
81068
81119
|
}
|
|
81069
81120
|
});
|
|
@@ -81531,7 +81582,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81531
81582
|
const registeredOffice = formData[InitialReturnFillingFormGroups.RegisteredOfficeAddress];
|
|
81532
81583
|
const certifiedBy = formData[InitialReturnFillingFormGroups.CertifiedBy];
|
|
81533
81584
|
const contact = formData[InitialReturnFillingFormGroups.Contact];
|
|
81534
|
-
const
|
|
81585
|
+
const mapAddress2 = (src) => ({
|
|
81535
81586
|
unitType: src?.[IRFormControls.UnitType] ?? null,
|
|
81536
81587
|
unitNumber: src?.[IRFormControls.UnitNumber] ?? null,
|
|
81537
81588
|
streetNumber: src?.[IRFormControls.StreetNumber] ?? null,
|
|
@@ -81543,7 +81594,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81543
81594
|
const id = item[IRFormControls.ID];
|
|
81544
81595
|
if (id) {
|
|
81545
81596
|
acc[id] = {
|
|
81546
|
-
address:
|
|
81597
|
+
address: mapAddress2(item),
|
|
81547
81598
|
residentCanadian: item[IRFormControls.IsCanadianResident] ?? false
|
|
81548
81599
|
};
|
|
81549
81600
|
}
|
|
@@ -81552,11 +81603,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81552
81603
|
return {
|
|
81553
81604
|
referenceNumber: generalInfo?.[IRFormControls.ClientMatterNumber] ?? null,
|
|
81554
81605
|
docketNumber: generalInfo?.[IRFormControls.Docket] ?? null,
|
|
81555
|
-
registeredOfficeAddress:
|
|
81606
|
+
registeredOfficeAddress: mapAddress2(registeredOffice),
|
|
81556
81607
|
directors: mapPersons(formData[InitialReturnFillingFormGroups.Directors]),
|
|
81557
81608
|
officers: mapPersons(formData[InitialReturnFillingFormGroups.Officers]),
|
|
81558
81609
|
certifiedBy: {
|
|
81559
|
-
address:
|
|
81610
|
+
address: mapAddress2(certifiedBy)
|
|
81560
81611
|
},
|
|
81561
81612
|
contactUid: contact?.[IRFormControls.Contact] ?? null
|
|
81562
81613
|
};
|
|
@@ -81567,13 +81618,15 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81567
81618
|
const refNumbers = formData[FormationFormGroups.ReferenceNumbers];
|
|
81568
81619
|
const legalOpinionData = formData[FormationFormGroups.LegalOpinion];
|
|
81569
81620
|
const registeredOffice = formData[FormationFormGroups.RegisteredOfficeAddress];
|
|
81570
|
-
|
|
81621
|
+
formData[FormationFormGroups.SharesAndRestrictions];
|
|
81571
81622
|
const contact = formData[FormationFormGroups.Contact];
|
|
81572
81623
|
const isNumbered = corpDetails?.[FormationFormControls.CorporationNameType] === ECoreIncorporationType.Numbered;
|
|
81573
81624
|
const data = {
|
|
81574
|
-
|
|
81625
|
+
referenceNumbers: {
|
|
81575
81626
|
referenceNumber: refNumbers?.[FormationFormControls.ClientMatterNumber] ?? null,
|
|
81576
|
-
docketNumber: refNumbers?.[FormationFormControls.DocketNumber] ?? null
|
|
81627
|
+
docketNumber: refNumbers?.[FormationFormControls.DocketNumber] ?? null
|
|
81628
|
+
},
|
|
81629
|
+
entityDetails: {
|
|
81577
81630
|
corporationNameType: corpDetails?.[FormationFormControls.CorporationNameType] ?? null,
|
|
81578
81631
|
legalIdentifier: isNumbered ? corpDetails?.[FormationFormControls.LegalEnding] : null,
|
|
81579
81632
|
corporationNameEnglish: corpDetails?.[FormationFormControls.ProposedCorporationNameEng] ?? null,
|
|
@@ -81625,18 +81678,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81625
81678
|
}
|
|
81626
81679
|
return acc;
|
|
81627
81680
|
}, {}),
|
|
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
81681
|
contactUid: contact[FormationFormControls.Contact] ?? null
|
|
81636
81682
|
};
|
|
81637
|
-
if (corpDetails[FormationFormControls.
|
|
81683
|
+
if (corpDetails[FormationFormControls.wasLegalOpinionObtained] && corpDetails[FormationFormControls.CorporationNameType] !== ECoreIncorporationType.Numbered) {
|
|
81638
81684
|
data.legalOpinion = {
|
|
81639
|
-
|
|
81685
|
+
wasLegalOpinionObtained: corpDetails?.[FormationFormControls.wasLegalOpinionObtained] ?? false,
|
|
81640
81686
|
lawyerSigning: legalOpinionData?.[FormationFormControls.LawyerSigningOpinion] ?? null,
|
|
81641
81687
|
address: {
|
|
81642
81688
|
unitType: legalOpinionData?.[FormationFormControls.UnitType] ?? null,
|
|
@@ -81665,8 +81711,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81665
81711
|
data: {
|
|
81666
81712
|
title: "You have unsaved changes",
|
|
81667
81713
|
text: "You have unsaved changes. Do you want to save before closing?",
|
|
81668
|
-
cancelButton: "
|
|
81669
|
-
confirmButton: "
|
|
81714
|
+
cancelButton: "No",
|
|
81715
|
+
confirmButton: "Yes"
|
|
81670
81716
|
},
|
|
81671
81717
|
panelClass: ["zero-padding-modal"],
|
|
81672
81718
|
width: "65rem"
|
|
@@ -81725,8 +81771,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81725
81771
|
"src/app/services/ontario/ontario-formation.service.ts"() {
|
|
81726
81772
|
init_core();
|
|
81727
81773
|
init_common_utils();
|
|
81728
|
-
init_transform_utils();
|
|
81729
|
-
init_address_utils();
|
|
81730
81774
|
init_core();
|
|
81731
81775
|
OntarioFormationService = class _OntarioFormationService {
|
|
81732
81776
|
config;
|
|
@@ -81734,23 +81778,14 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81734
81778
|
this.config = config2;
|
|
81735
81779
|
}
|
|
81736
81780
|
validate(_0, _1) {
|
|
81737
|
-
return __async(this, arguments, function* (signature,
|
|
81781
|
+
return __async(this, arguments, function* (signature, requestBody, opts = {}) {
|
|
81738
81782
|
if (!this.isFormationTask(signature.task)) {
|
|
81739
81783
|
throw new Error(`Expected Formation task, got: ${signature.task?._taskType}`);
|
|
81740
81784
|
}
|
|
81741
81785
|
ensureAuthInputs(signature);
|
|
81742
81786
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
81743
81787
|
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
|
-
}
|
|
81788
|
+
const req = requestBody;
|
|
81754
81789
|
const resp = yield fetchWithJwtRetry(signature, () => postJson(fetchFn, url, signature.jwtToken, req, {
|
|
81755
81790
|
"x-target-url": `${this.config.ONAOI}api/Incorporation`,
|
|
81756
81791
|
Authorization: `Bearer ${signature.jwtToken}`,
|
|
@@ -81782,8 +81817,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81782
81817
|
return __async(this, arguments, function* (signature, serviceOrderId, opts = {}) {
|
|
81783
81818
|
ensureAuthInputs(signature);
|
|
81784
81819
|
if (!serviceOrderId) {
|
|
81785
|
-
|
|
81786
|
-
throw err;
|
|
81820
|
+
throw new Error("Missing serviceOrderId.");
|
|
81787
81821
|
}
|
|
81788
81822
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
81789
81823
|
const url = signature.proxyApiUrl;
|
|
@@ -81888,6 +81922,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81888
81922
|
var init_federal_form_enum = __esm({
|
|
81889
81923
|
"src/app/enums/federal-form.enum.ts"() {
|
|
81890
81924
|
(function(FederalFormationFormControl2) {
|
|
81925
|
+
FederalFormationFormControl2["Id"] = "id";
|
|
81891
81926
|
FederalFormationFormControl2["CountriesOfResidence"] = "countriesOfResidence";
|
|
81892
81927
|
FederalFormationFormControl2["CountriesOfCitizenship"] = "countriesOfCitizenship";
|
|
81893
81928
|
FederalFormationFormControl2["ProposedCorporateName"] = "proposedCorporateName";
|
|
@@ -82084,7 +82119,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82084
82119
|
});
|
|
82085
82120
|
|
|
82086
82121
|
// src/app/constants/common.constants.ts
|
|
82087
|
-
var NAICS_CODES;
|
|
82122
|
+
var NAICS_CODES, NAICS_CODE_DESCRIPTIONS;
|
|
82088
82123
|
var init_common_constants = __esm({
|
|
82089
82124
|
"src/app/constants/common.constants.ts"() {
|
|
82090
82125
|
init_common_enums();
|
|
@@ -82093,40 +82128,29 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82093
82128
|
{ value: NAICSCodes.AirTransportation, label: "[481] Air transportation" },
|
|
82094
82129
|
{ value: NAICSCodes.ScheduledAirTransportation, label: "[481110] Scheduled air transportation" },
|
|
82095
82130
|
{ value: NAICSCodes.NonScheduledAirTransportation, label: "[48121] Non-scheduled air transportation" },
|
|
82096
|
-
{
|
|
82097
|
-
value: NAICSCodes.NonScheduledCharteredAirTransportation,
|
|
82098
|
-
label: "[481214] Non-scheduled chartered air transportation"
|
|
82099
|
-
},
|
|
82131
|
+
{ value: NAICSCodes.NonScheduledCharteredAirTransportation, label: "[481214] Non-scheduled chartered air transportation" },
|
|
82100
82132
|
{ value: NAICSCodes.NonScheduledSpecialtyFlyingServices, label: "[481215] Non-scheduled specialty flying services" },
|
|
82101
82133
|
{ value: NAICSCodes.RailTransportation, label: "[48211] Rail transportation" },
|
|
82102
82134
|
{ value: NAICSCodes.ShortHaulFreightRailTransportation, label: "[482112] Short-haul freight rail transportation" },
|
|
82103
82135
|
{ value: NAICSCodes.MainlineFreightRailTransportation, label: "[482113] Mainline freight rail transportation" },
|
|
82104
82136
|
{ value: NAICSCodes.PassengerRailTransportation, label: "[482114] Passenger rail transportation" },
|
|
82105
82137
|
{ 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
|
-
},
|
|
82138
|
+
{ value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportation, label: "[48311] Deep sea, coastal and Great Lakes water transportation" },
|
|
82139
|
+
{ value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportationExceptByFerries, label: "[483115] Deep sea, coastal and Great Lakes water transportation (except by ferries)" },
|
|
82140
|
+
{ value: NAICSCodes.DeepSeaCoastalAndGreatLakesWaterTransportationByFerries, label: "[483116] Deep sea, coastal and Great Lakes water transportation by ferries" },
|
|
82118
82141
|
{ value: NAICSCodes.InlandWaterTransportation, label: "[48321] Inland water transportation" },
|
|
82119
|
-
{
|
|
82120
|
-
value: NAICSCodes.InlandWaterTransportationExceptByFerries,
|
|
82121
|
-
label: "[483213] Inland water transportation (except by ferries)"
|
|
82122
|
-
},
|
|
82142
|
+
{ value: NAICSCodes.InlandWaterTransportationExceptByFerries, label: "[483213] Inland water transportation (except by ferries)" },
|
|
82123
82143
|
{ value: NAICSCodes.InlandWaterTransportationByFerries, label: "[483214] Inland water transportation by ferries" }
|
|
82124
82144
|
];
|
|
82145
|
+
NAICS_CODE_DESCRIPTIONS = NAICS_CODES.reduce((acc, { value, label }) => {
|
|
82146
|
+
acc[value] = label.replace(/^\[\S+\]\s*/, "");
|
|
82147
|
+
return acc;
|
|
82148
|
+
}, {});
|
|
82125
82149
|
}
|
|
82126
82150
|
});
|
|
82127
82151
|
|
|
82128
82152
|
// 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,
|
|
82153
|
+
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
82154
|
var init_federal_formation_form_contants = __esm({
|
|
82131
82155
|
"src/app/constants/federal-formation-form.contants.ts"() {
|
|
82132
82156
|
init_form_enums();
|
|
@@ -82439,7 +82463,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82439
82463
|
}
|
|
82440
82464
|
];
|
|
82441
82465
|
generateFederalFormationFormContactControl = (contacts) => {
|
|
82442
|
-
const contactsOptions = contacts.map((contact) => ({ label:
|
|
82466
|
+
const contactsOptions = contacts.map((contact) => ({ label: contact.participant._profile.name ?? "", value: contact._id }));
|
|
82443
82467
|
return [
|
|
82444
82468
|
{
|
|
82445
82469
|
type: FormType.Select,
|
|
@@ -82451,12 +82475,12 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82451
82475
|
},
|
|
82452
82476
|
{
|
|
82453
82477
|
type: FormType.Text,
|
|
82454
|
-
dynamicLabel: (form) => {
|
|
82478
|
+
dynamicLabel: (form, t) => {
|
|
82455
82479
|
const id = form.get(FederalFormationFormControl.Contact)?.value;
|
|
82456
82480
|
const contact = contacts.find((contact2) => contact2._id === id);
|
|
82457
82481
|
const email = contact?.participant?.communicationEmail ?? contact?.addresses?.[0]?.emails?.primary ?? "";
|
|
82458
82482
|
const phone = contact?.participant?.communicationPhone ?? contact?.addresses?.[0]?.contact_numbers?.primary ?? "";
|
|
82459
|
-
return `Contact Details: ${email
|
|
82483
|
+
return `Contact Details: ${getContactDetailsPreview(email, phone, t)}`;
|
|
82460
82484
|
},
|
|
82461
82485
|
formControlName: "",
|
|
82462
82486
|
required: false,
|
|
@@ -82508,82 +82532,86 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82508
82532
|
class: "span-12"
|
|
82509
82533
|
}
|
|
82510
82534
|
];
|
|
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
|
-
|
|
82535
|
+
federalFormationFormIndividualsWithSignificantControl = (addressForServicesMap) => {
|
|
82536
|
+
return [
|
|
82537
|
+
{
|
|
82538
|
+
type: FormType.Text,
|
|
82539
|
+
dynamicLabel: (form) => `Date Of Birth: ${form.get(FederalFormationFormControl.DateOfBirth)?.value}`,
|
|
82540
|
+
formControlName: FederalFormationFormControl.DateOfBirth,
|
|
82541
|
+
class: "span-12"
|
|
82542
|
+
},
|
|
82543
|
+
{
|
|
82544
|
+
type: FormType.Text,
|
|
82545
|
+
dynamicLabel: (form) => `<span>Countries Of Citizenship: ${form.get(FederalFormationFormControl.CountriesOfCitizenship)?.value}</span> </br> <span>Countries Of Residence: ${form.get(FederalFormationFormControl.CountriesOfResidence)?.value}</span>`,
|
|
82546
|
+
formControlName: "",
|
|
82547
|
+
class: "span-12"
|
|
82548
|
+
},
|
|
82549
|
+
{
|
|
82550
|
+
type: FormType.Text,
|
|
82551
|
+
dynamicLabel: (form) => `Residential Address: ${getAddressPreview(form)}`,
|
|
82552
|
+
formControlName: FederalFormationFormControl.DateOfBirth,
|
|
82553
|
+
class: "span-12"
|
|
82554
|
+
},
|
|
82555
|
+
{
|
|
82556
|
+
type: FormType.Select,
|
|
82557
|
+
label: "Address For Service",
|
|
82558
|
+
formControlName: FederalFormationFormControl.AddressForService,
|
|
82559
|
+
dynamicOptions: (form) => {
|
|
82560
|
+
return addressForServicesMap.get(form.getRawValue()[FederalFormationFormControl.Id]) ?? [];
|
|
82561
|
+
},
|
|
82562
|
+
class: "span-12",
|
|
82563
|
+
required: true
|
|
82564
|
+
},
|
|
82565
|
+
{
|
|
82566
|
+
type: FormType.Select,
|
|
82567
|
+
label: "Type of Interest",
|
|
82568
|
+
formControlName: FederalFormationFormControl.ISCTypeOfInterest,
|
|
82569
|
+
options: FEDERAL_ISC_TYPE_OF_INTEREST_OPTIONS,
|
|
82570
|
+
required: true,
|
|
82571
|
+
onChange: (form) => {
|
|
82572
|
+
form.get(FederalFormationFormControl.ISCShareHoldingMethod)?.setValue("", { emitEvent: false });
|
|
82573
|
+
form.get(FederalFormationFormControl.ISCJointHoldingType)?.setValue("", { emitEvent: false });
|
|
82574
|
+
form.get(FederalFormationFormControl.ISCPercentageInterest)?.setValue("", { emitEvent: false });
|
|
82575
|
+
form.get(FederalFormationFormControl.ISCShareHoldingMethod)?.updateValueAndValidity({ emitEvent: false });
|
|
82576
|
+
form.get(FederalFormationFormControl.ISCJointHoldingType)?.updateValueAndValidity({ emitEvent: false });
|
|
82577
|
+
form.get(FederalFormationFormControl.ISCPercentageInterest)?.updateValueAndValidity({ emitEvent: false });
|
|
82578
|
+
}
|
|
82579
|
+
},
|
|
82580
|
+
{
|
|
82581
|
+
type: FormType.Select,
|
|
82582
|
+
label: "Directly or Indirectly Held",
|
|
82583
|
+
formControlName: FederalFormationFormControl.ISCShareHoldingMethod,
|
|
82584
|
+
options: FEDERAL_ISC_SHARE_HOLDING_METHOD_OPTIONS,
|
|
82585
|
+
required: true,
|
|
82586
|
+
isVisible: (form) => {
|
|
82587
|
+
const typeOfInterests = form.get(FederalFormationFormControl.ISCTypeOfInterest)?.value;
|
|
82588
|
+
return typeOfInterests && typeOfInterests !== ISCTypeOfInterest.ControlWithoutShares;
|
|
82589
|
+
}
|
|
82590
|
+
},
|
|
82591
|
+
{
|
|
82592
|
+
type: FormType.Select,
|
|
82593
|
+
label: "Individually, Jointly or In Concert",
|
|
82594
|
+
formControlName: FederalFormationFormControl.ISCJointHoldingType,
|
|
82595
|
+
options: FEDERAL_ISC_JOINT_HOLDING_TYPE_OPTIONS,
|
|
82596
|
+
required: true,
|
|
82597
|
+
isVisible: (form) => {
|
|
82598
|
+
const typeOfInterests = form.get(FederalFormationFormControl.ISCTypeOfInterest)?.value;
|
|
82599
|
+
return typeOfInterests && typeOfInterests !== ISCTypeOfInterest.ControlWithoutShares;
|
|
82600
|
+
}
|
|
82601
|
+
},
|
|
82602
|
+
{
|
|
82603
|
+
type: FormType.Select,
|
|
82604
|
+
label: "Percentage Interest",
|
|
82605
|
+
formControlName: FederalFormationFormControl.ISCPercentageInterest,
|
|
82606
|
+
options: FEDERAL_ISC_PERCENTAGE_INTEREST_OPTIONS,
|
|
82607
|
+
required: true,
|
|
82608
|
+
isVisible: (form) => {
|
|
82609
|
+
const typeOfInterests = form.get(FederalFormationFormControl.ISCTypeOfInterest)?.value;
|
|
82610
|
+
return typeOfInterests && typeOfInterests !== ISCTypeOfInterest.ControlWithoutShares;
|
|
82611
|
+
}
|
|
82584
82612
|
}
|
|
82585
|
-
|
|
82586
|
-
|
|
82613
|
+
];
|
|
82614
|
+
};
|
|
82587
82615
|
GENERATE_FEDERAL_FORMATION_FORM_EXTRA_PROVINCIAL_LICENSES = (addressMap, affiliationsMap) => {
|
|
82588
82616
|
return [
|
|
82589
82617
|
{
|
|
@@ -82632,7 +82660,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82632
82660
|
{
|
|
82633
82661
|
type: FormType.Select,
|
|
82634
82662
|
dynamicLabel: (form) => {
|
|
82635
|
-
return
|
|
82663
|
+
return `Address for Service in ${form.get(FormationFormControls.Province)?.value}`;
|
|
82636
82664
|
},
|
|
82637
82665
|
formControlName: FederalFormationFormControl.ServiceAddressUid,
|
|
82638
82666
|
isVisible: (form) => form.get(FederalFormationFormControl.UseDifferentAddressForService)?.value,
|
|
@@ -82813,7 +82841,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82813
82841
|
\u0275\u0275advance(2);
|
|
82814
82842
|
\u0275\u0275textInterpolate(\u0275\u0275pipeBind1(16, 8, ctx.dialogData.submitButton));
|
|
82815
82843
|
}
|
|
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 });
|
|
82844
|
+
}, 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
82845
|
};
|
|
82818
82846
|
(() => {
|
|
82819
82847
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(SelectModalComponent, [{
|
|
@@ -82851,7 +82879,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82851
82879
|
</div>\r
|
|
82852
82880
|
\r
|
|
82853
82881
|
</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'] }]
|
|
82882
|
+
`, 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
82883
|
}], null, null);
|
|
82856
82884
|
})();
|
|
82857
82885
|
(() => {
|
|
@@ -83147,9 +83175,10 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83147
83175
|
[FederalFormationFormControl.UseDifferentMailingAddress]: new FormControl(delta?.registeredOfficeAddress?.useDifferentAddressForCorrespondence ?? false),
|
|
83148
83176
|
[FederalFormationFormControl.MailingAddress]: new FormControl(delta?.registeredOfficeAddress?.mailingAddressForCorrespondenceUid ?? null, requiredIfValue(FederalFormationFormControl.UseDifferentMailingAddress, true))
|
|
83149
83177
|
}, this.generateAddressFormGroup(findRegisteredOfficeAddress(task))));
|
|
83178
|
+
const invitedDirectorIds = Object.entries(delta?.directors ?? {}).filter(([, d]) => d.inviteForFullAccessManager).map(([id]) => id);
|
|
83150
83179
|
config2[FederalFormationFormGroups.InviteDirectorToBeFullAccessManager] = new FormGroup({
|
|
83151
|
-
[FederalFormationFormControl.InvitedDirectors]: new FormControl(
|
|
83152
|
-
[FederalFormationFormControl.ConsentToProvideTheAboveEmailAddresses]: new FormControl(false)
|
|
83180
|
+
[FederalFormationFormControl.InvitedDirectors]: new FormControl(invitedDirectorIds),
|
|
83181
|
+
[FederalFormationFormControl.ConsentToProvideTheAboveEmailAddresses]: new FormControl(delta?.consentToProvideDirectorEmailAddressesForFullAccessManager ?? false)
|
|
83153
83182
|
});
|
|
83154
83183
|
config2[FederalFormationFormGroups.Contact] = new FormGroup({
|
|
83155
83184
|
[FederalFormationFormControl.Contact]: new FormControl("", Validators.required)
|
|
@@ -83265,14 +83294,14 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83265
83294
|
}
|
|
83266
83295
|
if (rf & 2) {
|
|
83267
83296
|
const ctx_r0 = \u0275\u0275nextContext(2);
|
|
83268
|
-
\u0275\u0275property("documents", ctx_r0.documents())("selectedDocuments", ctx_r0.selectedDocuments());
|
|
83297
|
+
\u0275\u0275property("documents", ctx_r0.documents())("readonly", ctx_r0.isReadonly())("selectedDocuments", ctx_r0.selectedDocuments());
|
|
83269
83298
|
}
|
|
83270
83299
|
}
|
|
83271
83300
|
function FederalIncorporationFormComponent_Conditional_5_Template(rf, ctx) {
|
|
83272
83301
|
if (rf & 1) {
|
|
83273
83302
|
\u0275\u0275elementStart(0, "expandable-card", 4)(1, "div", 9);
|
|
83274
83303
|
\u0275\u0275element(2, "filing-form-group", 10);
|
|
83275
|
-
\u0275\u0275template(3, FederalIncorporationFormComponent_Conditional_5_Conditional_3_Template, 1,
|
|
83304
|
+
\u0275\u0275template(3, FederalIncorporationFormComponent_Conditional_5_Conditional_3_Template, 1, 3, "documents", 11);
|
|
83276
83305
|
\u0275\u0275elementEnd()();
|
|
83277
83306
|
}
|
|
83278
83307
|
if (rf & 2) {
|
|
@@ -83282,7 +83311,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83282
83311
|
\u0275\u0275advance(2);
|
|
83283
83312
|
\u0275\u0275property("isSubmitted", ctx_r0.isSubmitted())("form", corporateName_r3)("config", ctx_r0.incorporationFields);
|
|
83284
83313
|
\u0275\u0275advance();
|
|
83285
|
-
\u0275\u0275conditional(ctx_r0.isNonPreapprovedNameType() ? 3 : -1);
|
|
83314
|
+
\u0275\u0275conditional(ctx_r0.isNonPreapprovedNameType() || ctx_r0.selectedDocuments().length ? 3 : -1);
|
|
83286
83315
|
}
|
|
83287
83316
|
}
|
|
83288
83317
|
function FederalIncorporationFormComponent_Conditional_7_For_9_Template(rf, ctx) {
|
|
@@ -83476,7 +83505,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83476
83505
|
init_form_enums();
|
|
83477
83506
|
init_federal_form_helper();
|
|
83478
83507
|
init_expandable_list_card_component();
|
|
83479
|
-
init_transform_utils();
|
|
83480
83508
|
init_rxjs_interop();
|
|
83481
83509
|
init_common();
|
|
83482
83510
|
init_core();
|
|
@@ -83512,7 +83540,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83512
83540
|
articlesOfIncorporationFields = FEDERAL_FORMATION_ARTICLES_OF_INCORPORATION;
|
|
83513
83541
|
additionalInformationFields = FEDERAL_FORMATION_FORM_ADDITIONAL_INFORMATION;
|
|
83514
83542
|
significantControlFields = FEDERAL_FORMATION_FORM_SIGNIFICANT_CONTROL;
|
|
83515
|
-
individualsWithSignificantControlFields =
|
|
83543
|
+
individualsWithSignificantControlFields = [];
|
|
83516
83544
|
registeredOfficeAddressFields = [];
|
|
83517
83545
|
federalFormationFormInviteDirectorsToBeManagersControl = [];
|
|
83518
83546
|
contactControl = [];
|
|
@@ -83542,50 +83570,23 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83542
83570
|
const mailings = task.entity.addresses.filter((a) => a.location_type === "Mailing");
|
|
83543
83571
|
const mailingOptions = mailings.map((mailing) => ({ label: `${mailing.display?.line1}${mailing.display?.line2}`, value: mailing.uid }));
|
|
83544
83572
|
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
83573
|
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
83574
|
this.registeredOfficeAddressFields = generateFederalFormationFormRegisteredOfficeAddressControl(mailingOptions);
|
|
83576
|
-
this.extraProvincialLicensesFields =
|
|
83575
|
+
this.extraProvincialLicensesFields = this.generateEPLFields(eplRegistrations);
|
|
83577
83576
|
this.contactControl = generateFederalFormationFormContactControl(contacts);
|
|
83577
|
+
this.individualsWithSignificantControlFields = federalFormationFormIndividualsWithSignificantControl(this.generateISCAddressesMap(getIndividualWithSignificantControl(task.entity.affiliations)));
|
|
83578
83578
|
}
|
|
83579
83579
|
});
|
|
83580
83580
|
effect(() => {
|
|
83581
83581
|
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 }));
|
|
83582
|
+
const directorOptions = directors.map((director) => ({ label: getPersonName(director.participant), value: director.participant._id }));
|
|
83583
83583
|
this.federalFormationFormInviteDirectorsToBeManagersControl = generateFederalFormationFormInviteDirectorsToBeManagersControl(directorOptions);
|
|
83584
83584
|
});
|
|
83585
83585
|
effect(() => {
|
|
83586
83586
|
const form = this.form();
|
|
83587
83587
|
if (form) {
|
|
83588
83588
|
const formRawValue = form.getRawValue();
|
|
83589
|
+
this.isNonPreapprovedNameType.set(formRawValue[this.groups.CorporateName]?.[this.controls.NameType] === NameType2.NonPreapproved);
|
|
83589
83590
|
const individualsWithSignificantControl = formRawValue[this.groups.IndividualsWithSignificantControl];
|
|
83590
83591
|
const selectedIndividualWithSignificant = individualsWithSignificantControl?.map((i) => i[this.controls.EntityName]) ?? [];
|
|
83591
83592
|
this.selectedIndividualWithSignificant.set(selectedIndividualWithSignificant);
|
|
@@ -83641,10 +83642,57 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83641
83642
|
return "";
|
|
83642
83643
|
}
|
|
83643
83644
|
if (articles.min_directors === articles.max_directors) {
|
|
83644
|
-
return `<span class="body-1-semibold">Number of Directors:</span> ${articles.min_directors}`;
|
|
83645
|
+
return `<span class="body-1-semibold black">Number of Directors:</span> ${articles.min_directors}`;
|
|
83646
|
+
}
|
|
83647
|
+
return `<span class="body-1-semibold black">Minimum and Maximum Number of Directors:</span> ${articles.min_directors}-${articles.max_directors}`;
|
|
83648
|
+
});
|
|
83649
|
+
generateEPLFields(registrations) {
|
|
83650
|
+
const eplAddressesMap = /* @__PURE__ */ new Map();
|
|
83651
|
+
const eplAffiliationsMap = /* @__PURE__ */ new Map();
|
|
83652
|
+
for (const registration of registrations) {
|
|
83653
|
+
const addressOptions = [];
|
|
83654
|
+
const affiliationsOptions = [];
|
|
83655
|
+
const affiliations = registration.affiliations;
|
|
83656
|
+
if (affiliations) {
|
|
83657
|
+
for (const affiliation of affiliations) {
|
|
83658
|
+
affiliationsOptions.push({
|
|
83659
|
+
label: getPersonName(affiliation.participant),
|
|
83660
|
+
value: affiliation._id
|
|
83661
|
+
});
|
|
83662
|
+
for (const address of affiliation.addresses) {
|
|
83663
|
+
const display = address.display;
|
|
83664
|
+
addressOptions.push({
|
|
83665
|
+
label: `${display?.line1 ?? ""} ${display?.line2 ?? ""}`,
|
|
83666
|
+
value: address.uid
|
|
83667
|
+
});
|
|
83668
|
+
}
|
|
83669
|
+
const registeredOfficeAddress = affiliation?.parent_affiliation?.addresses?.[0];
|
|
83670
|
+
if (registeredOfficeAddress) {
|
|
83671
|
+
const registeredOfficeAddressOption = {
|
|
83672
|
+
label: `${registeredOfficeAddress?.display?.line1 ?? ""}${registeredOfficeAddress?.display?.line2 ?? ""}`,
|
|
83673
|
+
value: registeredOfficeAddress?.uid
|
|
83674
|
+
};
|
|
83675
|
+
addressOptions.push(registeredOfficeAddressOption);
|
|
83676
|
+
}
|
|
83677
|
+
}
|
|
83678
|
+
}
|
|
83679
|
+
eplAddressesMap.set(registration.uid, addressOptions);
|
|
83680
|
+
eplAffiliationsMap.set(registration.uid, affiliationsOptions);
|
|
83645
83681
|
}
|
|
83646
|
-
return
|
|
83647
|
-
}
|
|
83682
|
+
return GENERATE_FEDERAL_FORMATION_FORM_EXTRA_PROVINCIAL_LICENSES(eplAddressesMap, eplAffiliationsMap);
|
|
83683
|
+
}
|
|
83684
|
+
generateISCAddressesMap(affiliations) {
|
|
83685
|
+
const map2 = /* @__PURE__ */ new Map();
|
|
83686
|
+
const individualsWithSignificantControl = getIndividualWithSignificantControl(affiliations);
|
|
83687
|
+
for (const individual of individualsWithSignificantControl) {
|
|
83688
|
+
const addressOptions = individual.addresses.map((address) => ({
|
|
83689
|
+
label: `${address.display?.line1 ?? ""} ${address.display?.line2 ?? ""}`.trim(),
|
|
83690
|
+
value: address.uid
|
|
83691
|
+
}));
|
|
83692
|
+
map2.set(individual._id, addressOptions);
|
|
83693
|
+
}
|
|
83694
|
+
return map2;
|
|
83695
|
+
}
|
|
83648
83696
|
getFormGroup(key) {
|
|
83649
83697
|
return this.form().get(key);
|
|
83650
83698
|
}
|
|
@@ -83654,7 +83702,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83654
83702
|
static \u0275fac = function FederalIncorporationFormComponent_Factory(__ngFactoryType__) {
|
|
83655
83703
|
return new (__ngFactoryType__ || _FederalIncorporationFormComponent)();
|
|
83656
83704
|
};
|
|
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) {
|
|
83705
|
+
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
83706
|
if (rf & 1) {
|
|
83659
83707
|
\u0275\u0275projectionDef();
|
|
83660
83708
|
\u0275\u0275elementStart(0, "div", 0);
|
|
@@ -83762,9 +83810,10 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83762
83810
|
<div class="incorporation-form-item">\r
|
|
83763
83811
|
<filing-form-group [isSubmitted]="isSubmitted()" [form]="corporateName" [config]="incorporationFields"/>\r
|
|
83764
83812
|
\r
|
|
83765
|
-
@if (isNonPreapprovedNameType()) {\r
|
|
83813
|
+
@if (isNonPreapprovedNameType() || selectedDocuments().length) {\r
|
|
83766
83814
|
<documents\r
|
|
83767
83815
|
[documents]="documents()"\r
|
|
83816
|
+
[readonly]="isReadonly()"\r
|
|
83768
83817
|
[selectedDocuments]="selectedDocuments()"\r
|
|
83769
83818
|
(addDocuments)="addDocuments.emit($event)"\r
|
|
83770
83819
|
(removeDocument)="removeDocument.emit($event)"\r
|
|
@@ -83779,7 +83828,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83779
83828
|
@if (articlesOfIncorporation) {\r
|
|
83780
83829
|
<expandable-card [isValid]="!articlesOfIncorporation.invalid" [isStatusIcon]="isStatusIcon()" [title]="groups.ArticlesOfIncorporation">\r
|
|
83781
83830
|
<div class="incorporation-form-item">\r
|
|
83782
|
-
<span class="body-1-regular" [innerHTML]="directorsSubtitle()"></span>\r
|
|
83831
|
+
<span class="body-1-regular black" [innerHTML]="directorsSubtitle()"></span>\r
|
|
83783
83832
|
\r
|
|
83784
83833
|
<filing-form-group [isSubmitted]="isSubmitted()" [form]="articlesOfIncorporation" [config]="articlesOfIncorporationFields"/>\r
|
|
83785
83834
|
<div>\r
|
|
@@ -83865,7 +83914,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83865
83914
|
}], () => [], null);
|
|
83866
83915
|
})();
|
|
83867
83916
|
(() => {
|
|
83868
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FederalIncorporationFormComponent, { className: "FederalIncorporationFormComponent", filePath: "src/app/components/federal/incorporation/federal-incorporation-form/federal-incorporation-form.component.ts", lineNumber:
|
|
83917
|
+
(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
83918
|
})();
|
|
83870
83919
|
}
|
|
83871
83920
|
});
|
|
@@ -84653,11 +84702,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84653
84702
|
if (task) {
|
|
84654
84703
|
if (this.isFormationTask(task)) {
|
|
84655
84704
|
this.deltaForm.set(new FormGroup(FederalFormHelper.generateConfig(task)));
|
|
84656
|
-
this.initialDeltaValue.set(this.generateFederalFormationDeltaData());
|
|
84705
|
+
this.initialDeltaValue.set(untracked2(() => this.generateFederalFormationDeltaData()));
|
|
84657
84706
|
}
|
|
84658
84707
|
if (isUpdateMaintain(task)) {
|
|
84659
84708
|
this.umDeltaForm.set(new FormGroup({}));
|
|
84660
|
-
this.umInitialDeltaValue.set(this.generateFederalUpdateMaintainDeltaData());
|
|
84709
|
+
this.umInitialDeltaValue.set(untracked2(() => this.generateFederalUpdateMaintainDeltaData()));
|
|
84661
84710
|
}
|
|
84662
84711
|
}
|
|
84663
84712
|
});
|
|
@@ -84732,17 +84781,18 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84732
84781
|
const registeredOfficeData = formData[FederalFormationFormGroups.RegisteredOfficeAddress] ?? {};
|
|
84733
84782
|
const directorsData = formData[FederalFormationFormGroups.Directors] ?? [];
|
|
84734
84783
|
const inviteDirectorsData = formData[FederalFormationFormGroups.InviteDirectorToBeFullAccessManager] ?? {};
|
|
84735
|
-
const invitedDirectorIds = inviteDirectorsData[FederalFormationFormControl.InvitedDirectors] ?? [];
|
|
84784
|
+
const invitedDirectorIds = new Set(inviteDirectorsData[FederalFormationFormControl.InvitedDirectors] ?? []);
|
|
84736
84785
|
const significantControlData = formData[FederalFormationFormGroups.SignificantControl] ?? {};
|
|
84737
84786
|
const iscIndividualsData = formData[FederalFormationFormGroups.IndividualsWithSignificantControl] ?? [];
|
|
84738
84787
|
const eplData = formData[FederalFormationFormGroups.ExtraProvincialRegistrations] ?? [];
|
|
84739
84788
|
const contactData = formData[FederalFormationFormGroups.Contact] ?? {};
|
|
84789
|
+
const consentToProvideDirectorEmailAddressesForFullAccessManager = inviteDirectorsData[FederalFormationFormControl.ConsentToProvideTheAboveEmailAddresses];
|
|
84740
84790
|
const directors = {};
|
|
84741
84791
|
for (const director of directorsData) {
|
|
84742
84792
|
const id = director.id;
|
|
84743
84793
|
directors[id] = {
|
|
84744
84794
|
residentCanadian: director[FederalFormationFormControl.IsCanadianResident] ?? false,
|
|
84745
|
-
|
|
84795
|
+
inviteForFullAccessManager: invitedDirectorIds.has(id)
|
|
84746
84796
|
};
|
|
84747
84797
|
}
|
|
84748
84798
|
const extraProvincialLicenses = {};
|
|
@@ -84752,45 +84802,52 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84752
84802
|
businessActivity: epl[FederalFormationFormControl.BusinessActivities],
|
|
84753
84803
|
principalOfficeAddressUid: epl[FederalFormationFormControl.PrincipalOfficeInOntario],
|
|
84754
84804
|
serviceAddressUid: epl[FederalFormationFormControl.UseDifferentAddressForService] ? epl[FederalFormationFormControl.ServiceAddressUid] : null,
|
|
84805
|
+
contactUid: epl[FederalFormationFormControl.ContactInOntario],
|
|
84755
84806
|
chiefManagerUid: epl[FederalFormationFormControl.ChiefOfficerManagerInOntario],
|
|
84756
84807
|
signatoryUid: epl[FederalFormationFormControl.PersonAuthorizingTheFiling],
|
|
84757
84808
|
signatoryRole: epl[FederalFormationFormControl.Role]
|
|
84758
84809
|
};
|
|
84759
84810
|
}
|
|
84811
|
+
const nonPreapproved = corporateNameData[FederalFormationFormControl.NameType] === NameType2.NonPreapproved;
|
|
84812
|
+
const supportingDocuments = [...this.selectedDocuments() ?? []];
|
|
84760
84813
|
return {
|
|
84761
|
-
corporateName: {
|
|
84814
|
+
corporateName: __spreadValues({
|
|
84762
84815
|
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
|
-
|
|
84816
|
+
primaryNameReservationNumber: corporateNameData[FederalFormationFormControl.PrimaryNuansReportReservation],
|
|
84817
|
+
primaryNameReservationDate: corporateNameData[FederalFormationFormControl.PrimaryReservationDate],
|
|
84818
|
+
secondaryNameReservationNumber: corporateNameData[FederalFormationFormControl.SecondaryReservationNumber],
|
|
84819
|
+
secondaryNameReservationDate: corporateNameData[FederalFormationFormControl.SecondaryReservationDate],
|
|
84820
|
+
legalElement: corporateNameData[FederalFormationFormControl.LegalElement],
|
|
84821
|
+
preapprovalRequestId: corporateNameData[FederalFormationFormControl.NamePreapprovalRequestId],
|
|
84822
|
+
preapprovalConfirmationNumber: corporateNameData[FederalFormationFormControl.NamePreapprovalConfirmationNumber]
|
|
84823
|
+
}, nonPreapproved ? {
|
|
84824
|
+
supportingDocuments,
|
|
84825
|
+
businessActivity: corporateNameData[FederalFormationFormControl.BusinessActivities],
|
|
84826
|
+
locationOfOperations: corporateNameData[FederalFormationFormControl.LocationTerritory],
|
|
84827
|
+
typeOfClientele: corporateNameData[FederalFormationFormControl.ClienteleMarketType],
|
|
84828
|
+
originOfKeyword: corporateNameData[FederalFormationFormControl.KeywordOrigin],
|
|
84829
|
+
similarNamesSearchedOrRegistered: corporateNameData[FederalFormationFormControl.SimilarNamesSearchedOrRegistered]
|
|
84830
|
+
} : {}),
|
|
84777
84831
|
registeredOfficeAddress: {
|
|
84778
84832
|
useDifferentAddressForCorrespondence: !!registeredOfficeData[FederalFormationFormControl.UseDifferentMailingAddress],
|
|
84779
|
-
mailingAddressForCorrespondenceUid: registeredOfficeData[FederalFormationFormControl.MailingAddress]
|
|
84833
|
+
mailingAddressForCorrespondenceUid: registeredOfficeData[FederalFormationFormControl.MailingAddress]
|
|
84780
84834
|
},
|
|
84781
84835
|
directors,
|
|
84782
84836
|
individualsWithSignificantControl: {
|
|
84783
84837
|
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
|
-
|
|
84838
|
+
exclusionReason: significantControlData[FederalFormationFormControl.SignificantControlType] === ISCOptions.Excluded ? significantControlData[FederalFormationFormControl.ExclusionReason] : void 0,
|
|
84839
|
+
individuals: significantControlData[FederalFormationFormControl.SignificantControlType] === ISCOptions.ListISC ? iscIndividualsData.map((isc) => {
|
|
84840
|
+
return {
|
|
84841
|
+
affiliationId: isc[FormationFormControls.Id],
|
|
84842
|
+
typeOfInterest: isc[FederalFormationFormControl.ISCTypeOfInterest],
|
|
84843
|
+
shareHoldingMethod: isc[FederalFormationFormControl.ISCShareHoldingMethod],
|
|
84844
|
+
jointHoldingType: isc[FederalFormationFormControl.ISCJointHoldingType],
|
|
84845
|
+
percentageInterest: isc[FederalFormationFormControl.ISCPercentageInterest],
|
|
84846
|
+
addressForService: isc[FederalFormationFormControl.AddressForService]
|
|
84847
|
+
};
|
|
84848
|
+
}) : void 0
|
|
84792
84849
|
},
|
|
84793
|
-
consentToProvideDirectorEmailAddressesForFullAccessManager
|
|
84850
|
+
consentToProvideDirectorEmailAddressesForFullAccessManager,
|
|
84794
84851
|
extraProvincialLicenses,
|
|
84795
84852
|
contactUid: contactData[FederalFormationFormControl.Contact]
|
|
84796
84853
|
};
|
|
@@ -84806,8 +84863,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84806
84863
|
data: {
|
|
84807
84864
|
title: "You have unsaved changes",
|
|
84808
84865
|
text: "You have unsaved changes. Do you want to save before closing?",
|
|
84809
|
-
cancelButton: "
|
|
84810
|
-
confirmButton: "
|
|
84866
|
+
cancelButton: "No",
|
|
84867
|
+
confirmButton: "Yes"
|
|
84811
84868
|
},
|
|
84812
84869
|
panelClass: ["zero-padding-modal"],
|
|
84813
84870
|
width: "65rem"
|
|
@@ -84858,26 +84915,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84858
84915
|
});
|
|
84859
84916
|
|
|
84860
84917
|
// 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
84918
|
var FederalFormationService;
|
|
84874
84919
|
var init_federal_formation_service = __esm({
|
|
84875
84920
|
"src/app/services/federal/federal-formation.service.ts"() {
|
|
84876
84921
|
init_core();
|
|
84877
84922
|
init_common_utils();
|
|
84878
|
-
init_transform_utils();
|
|
84879
|
-
init_ECoreInterfaces();
|
|
84880
|
-
init_address_utils();
|
|
84881
84923
|
init_core();
|
|
84882
84924
|
FederalFormationService = class _FederalFormationService {
|
|
84883
84925
|
config;
|
|
@@ -84885,24 +84927,18 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84885
84927
|
this.config = config2;
|
|
84886
84928
|
}
|
|
84887
84929
|
validate(_0, _1) {
|
|
84888
|
-
return __async(this, arguments, function* (signature,
|
|
84930
|
+
return __async(this, arguments, function* (signature, requestBody, opts = {}) {
|
|
84889
84931
|
if (!this.isFormationTask(signature.task)) {
|
|
84890
84932
|
throw new Error(`Expected Formation task, got: ${signature.task?._taskType}`);
|
|
84891
84933
|
}
|
|
84892
84934
|
ensureAuthInputs(signature);
|
|
84893
84935
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
84894
84936
|
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
|
-
}
|
|
84937
|
+
const req = requestBody;
|
|
84905
84938
|
const resp = yield fetchWithJwtRetry(signature, () => postJson(fetchFn, url, signature.jwtToken, req, {
|
|
84939
|
+
"ApiKey": "a759101c-aeac-4fa6-90dc-8b56f01b2939",
|
|
84940
|
+
Authorization: `Bearer ${signature.jwtToken}`,
|
|
84941
|
+
"AccountKey": "1c3e3a6e-2a8b-4dd2-b906-aec25a1a7227",
|
|
84906
84942
|
"x-target-url": `${this.config.ONAOI}api/Incorporation`,
|
|
84907
84943
|
"x-access-token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtaWNoZWwubGF2b2llQGF0aGVubmlhbi5jb20iLCJzdWIiOiI2N2RkY2IwNWRjNDAzMjg0ZTdmYTA3ZmIiLCJpYXQiOjE3NzAyMTI2OTQsImV4cCI6MTc3MDIxOTg5NCwiYmlkIjoiIiwiYXV0IjoidHJ1ZSIsIm9yZyI6Imh0dHBzOi8vb2xpdmUtMS50ZXN0LmF0aGVubmlhbi5jb20iLCJwZXIiOiIifQ.0QsFPBVGTA8JyacfEDx4qz5XVQB3AeL2-uCBiCs9qF0",
|
|
84908
84944
|
Cookie: "AWSALB=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53; AWSALBCORS=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53"
|
|
@@ -84931,14 +84967,15 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84931
84967
|
return __async(this, arguments, function* (signature, serviceOrderId, opts = {}) {
|
|
84932
84968
|
ensureAuthInputs(signature);
|
|
84933
84969
|
if (!serviceOrderId) {
|
|
84934
|
-
|
|
84935
|
-
throw err;
|
|
84970
|
+
throw new Error("Missing serviceOrderId.");
|
|
84936
84971
|
}
|
|
84937
84972
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
84938
84973
|
const url = signature.proxyApiUrl;
|
|
84939
84974
|
const resp = yield fetchWithJwtRetry(signature, () => fetchFn(url, {
|
|
84940
84975
|
method: "POST",
|
|
84941
84976
|
headers: {
|
|
84977
|
+
// 'ApiKey': 'a759101c-aeac-4fa6-90dc-8b56f01b2939',
|
|
84978
|
+
// 'AccountKey': '1c3e3a6e-2a8b-4dd2-b906-aec25a1a7227',
|
|
84942
84979
|
Authorization: `Bearer ${signature.jwtToken}`,
|
|
84943
84980
|
Cookie: "AWSALB=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53; AWSALBCORS=PpMRL+JDLimOntn4FPEpJ2ZX9rtRbn/7wOE1Ntyq9RGhYPgnJpjAN8xr8R5TyM4v1tBvC62q0YWVR2fQwDLLKWIIQm+U79VccsjiMHRffNr6an9tJNOOdpX94R53",
|
|
84944
84981
|
"x-target-url": `${this.config.ONAOI}api/Incorporation/${encodeURIComponent(serviceOrderId)}/submit`,
|
|
@@ -84985,190 +85022,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84985
85022
|
return payload;
|
|
84986
85023
|
});
|
|
84987
85024
|
}
|
|
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
85025
|
static \u0275fac = function FederalFormationService_Factory(__ngFactoryType__) {
|
|
85173
85026
|
return new (__ngFactoryType__ || _FederalFormationService)();
|
|
85174
85027
|
};
|
|
@@ -85185,79 +85038,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85185
85038
|
}
|
|
85186
85039
|
});
|
|
85187
85040
|
|
|
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
85041
|
// src/app/services/ontario/ontario-update-maintain.service.ts
|
|
85248
85042
|
var OntarioUpdateMaintainService;
|
|
85249
85043
|
var init_ontario_update_maintain_service = __esm({
|
|
85250
85044
|
"src/app/services/ontario/ontario-update-maintain.service.ts"() {
|
|
85251
85045
|
init_core();
|
|
85252
85046
|
init_common_enums();
|
|
85253
|
-
init_common_models();
|
|
85254
85047
|
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
85048
|
init_core();
|
|
85262
85049
|
OntarioUpdateMaintainService = class _OntarioUpdateMaintainService {
|
|
85263
85050
|
config;
|
|
@@ -85278,46 +85065,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85278
85065
|
return ECoreGenericFilingFormType.InitialReturn;
|
|
85279
85066
|
}
|
|
85280
85067
|
}
|
|
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
85068
|
setConfig(config2) {
|
|
85314
85069
|
this.config = config2;
|
|
85315
85070
|
}
|
|
85316
85071
|
validateCurrentData(signature, opts) {
|
|
85317
85072
|
return __async(this, null, function* () {
|
|
85318
85073
|
if (!isUpdateMaintain(signature.task)) {
|
|
85319
|
-
|
|
85320
|
-
throw err;
|
|
85074
|
+
throw new Error(`submitInitialReturnValidationToECore: task is not InitialReturn (${signature.task?._taskType})`);
|
|
85321
85075
|
}
|
|
85322
85076
|
const fetchFn = opts?.fetchImpl ?? fetch;
|
|
85323
85077
|
const CorporationInformation = {
|
|
@@ -85385,365 +85139,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85385
85139
|
return data.AnnualReturnFiling?.CorporationInfo || data.InitialReturnNoticeOfChangeFiling?.CorporationInfo || null;
|
|
85386
85140
|
});
|
|
85387
85141
|
}
|
|
85388
|
-
submitInitialReturnValidationToECore(signature,
|
|
85142
|
+
submitInitialReturnValidationToECore(signature, requestBody, opts) {
|
|
85389
85143
|
return __async(this, null, function* () {
|
|
85390
85144
|
if (!isUpdateMaintain(signature.task)) {
|
|
85391
85145
|
throw new Error(`submitInitialReturnValidationToECore: task is not InitialReturn (${signature.task?._taskType})`);
|
|
85392
85146
|
}
|
|
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
85147
|
const fetchFn = opts?.fetchImpl ?? fetch;
|
|
85748
85148
|
const url = signature.proxyApiUrl;
|
|
85749
85149
|
const resp = yield fetchFn(url, {
|
|
@@ -85768,7 +85168,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85768
85168
|
if (result?.Draft) {
|
|
85769
85169
|
signature.filingValidateSuccess?.({
|
|
85770
85170
|
searchOrFilingType: "ontarioInitialReturn",
|
|
85771
|
-
serviceOrderId,
|
|
85171
|
+
serviceOrderId: requestBody.CurrentDataServiceOrderId,
|
|
85772
85172
|
validatedOn: /* @__PURE__ */ new Date(),
|
|
85773
85173
|
provider: "obr",
|
|
85774
85174
|
draftPdf: result.Draft,
|
|
@@ -85788,11 +85188,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85788
85188
|
return __async(this, arguments, function* (signature, serviceOrderId, opts = {}) {
|
|
85789
85189
|
ensureAuthInputs(signature);
|
|
85790
85190
|
if (!serviceOrderId) {
|
|
85791
|
-
|
|
85792
|
-
throw err;
|
|
85191
|
+
throw new Error("Missing serviceOrderId.");
|
|
85793
85192
|
}
|
|
85794
85193
|
const fetchFn = opts.fetchImpl ?? fetch;
|
|
85795
|
-
opts.endpointPath?.split("/").filter((item) => Boolean(item) && item !== "api").join("/") ?? `/FilingON`;
|
|
85796
85194
|
const url = signature.proxyApiUrl;
|
|
85797
85195
|
const resp = yield fetchWithJwtRetry(signature, () => fetchFn(url, {
|
|
85798
85196
|
method: "POST",
|
|
@@ -85966,6 +85364,750 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85966
85364
|
}
|
|
85967
85365
|
});
|
|
85968
85366
|
|
|
85367
|
+
// src/app/helpers/mappers/ontario-formation.mapper.ts
|
|
85368
|
+
function buildOntarioFormationValidateRequest(task, deltaData) {
|
|
85369
|
+
return {
|
|
85370
|
+
Jurisdiction: CANProvinceToCode(task.entity?._compliance?.home_jurisdiction) || "ON",
|
|
85371
|
+
Incorporation: formationTaskToECore(task, deltaData)
|
|
85372
|
+
};
|
|
85373
|
+
}
|
|
85374
|
+
var init_ontario_formation_mapper = __esm({
|
|
85375
|
+
"src/app/helpers/mappers/ontario-formation.mapper.ts"() {
|
|
85376
|
+
init_transform_utils();
|
|
85377
|
+
init_address_utils();
|
|
85378
|
+
}
|
|
85379
|
+
});
|
|
85380
|
+
|
|
85381
|
+
// src/app/helpers/mappers/federal-formation.mapper.ts
|
|
85382
|
+
function federalFormationTaskToECore(task, deltaData) {
|
|
85383
|
+
const corporateNameDelta = deltaData.corporateName;
|
|
85384
|
+
const significantControl = deltaData.individualsWithSignificantControl;
|
|
85385
|
+
const isNumbered = task._ext._numbered_company === true;
|
|
85386
|
+
const englishName = !isNumbered ? {
|
|
85387
|
+
CorporationName: task.entity._profile.name || "",
|
|
85388
|
+
ReservationDate: "",
|
|
85389
|
+
ReservationNumber: corporateNameDelta?.primaryNameReservationNumber || ""
|
|
85390
|
+
} : void 0;
|
|
85391
|
+
const frenchName = !isNumbered && task.entity._profile.secondary_name ? {
|
|
85392
|
+
CorporationName: task.entity._profile.secondary_name || "",
|
|
85393
|
+
ReservationDate: "",
|
|
85394
|
+
ReservationNumber: corporateNameDelta?.secondaryNameReservationNumber || ""
|
|
85395
|
+
} : void 0;
|
|
85396
|
+
const legalEnding = corporateNameDelta?.legalElement;
|
|
85397
|
+
const mailingAddressUid = deltaData.registeredOfficeAddress?.mailingAddressForCorrespondenceUid;
|
|
85398
|
+
const mailingAddress = task.entity.addresses.find((address) => address.uid === mailingAddressUid);
|
|
85399
|
+
const registeredOfficeAddress = findRegisteredOfficeAddress(task);
|
|
85400
|
+
const directors = task.entity.affiliations.filter((aff) => aff.kind === "PrincipalAffiliationV3" && aff.role.role_name === DirectorRole.DIRECTOR);
|
|
85401
|
+
const incorporators = task._ext._incorporators ?? [];
|
|
85402
|
+
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];
|
|
85403
|
+
const officialBusinessEmail = registeredOfficeAddress?.communications?.find((c) => c.type === "Business Email")?.value;
|
|
85404
|
+
const contact = task.entity.affiliations.find((a) => a._id === deltaData.contactUid);
|
|
85405
|
+
const epl = getEPRegistrations(task);
|
|
85406
|
+
const eplDelta = deltaData.extraProvincialLicenses;
|
|
85407
|
+
const directorsDelta = deltaData.directors;
|
|
85408
|
+
const individualsWithSignificantControlDelta = deltaData.individualsWithSignificantControl;
|
|
85409
|
+
const consentToProvideEmails = deltaData.consentToProvideDirectorEmailAddressesForFullAccessManager;
|
|
85410
|
+
const individualsWithSignificantControl = getIndividualWithSignificantControl(task.entity.affiliations);
|
|
85411
|
+
const isListIsc = significantControl.type === ISCOptions.ListISC;
|
|
85412
|
+
const isNonPreapproved = corporateNameDelta?.nameType === NameType2.NonPreapproved;
|
|
85413
|
+
const payload = {
|
|
85414
|
+
IncorporationType: corporateNameDelta?.nameType,
|
|
85415
|
+
LegalEnding: isNumbered ? legalEnding : "",
|
|
85416
|
+
EnglishName: englishName,
|
|
85417
|
+
FrenchName: frenchName,
|
|
85418
|
+
PreappClientNumber: corporateNameDelta?.preapprovalConfirmationNumber,
|
|
85419
|
+
PreappRequestNumber: corporateNameDelta?.preapprovalRequestId,
|
|
85420
|
+
RegisteredOffice: registeredOfficeAddress ? __spreadProps(__spreadValues({}, mapAddress(registeredOfficeAddress)), {
|
|
85421
|
+
MailingAddressSameAsOffice: registeredOfficeAddress.uid === mailingAddressUid
|
|
85422
|
+
}) : void 0,
|
|
85423
|
+
MailingAddress: mailingAddress ? __spreadProps(__spreadValues({}, mapAddress(mailingAddress)), {
|
|
85424
|
+
MailingAddressSameAsOffice: mailingAddress.uid === mailingAddressUid
|
|
85425
|
+
}) : void 0,
|
|
85426
|
+
Directors: directors.map((d) => transformDirector(d, directorsDelta[d.participant._id], consentToProvideEmails)),
|
|
85427
|
+
Incorporators: incorporators.map((i) => transformIncorporator(i)),
|
|
85428
|
+
CoverLetter: createCoverLetter2(officialBusinessEmail, contact?.participant),
|
|
85429
|
+
DirectorNumberType: task.entity._articles?.min_directors === task.entity._articles?.max_directors ? ECoreDirectorNumberType.Fixed : ECoreDirectorNumberType.Range,
|
|
85430
|
+
MinimumNumberOfDirectors: task.entity._articles?.min_directors,
|
|
85431
|
+
MaximumNumberOfDirectors: task.entity._articles?.max_directors,
|
|
85432
|
+
FixedNumberOfDirectors: task.entity._articles?.min_directors === task.entity._articles?.max_directors ? task.entity._articles?.min_directors : null,
|
|
85433
|
+
SignificantControlType: significantControl?.type,
|
|
85434
|
+
ExclusionReason: significantControl?.exclusionReason ?? 0,
|
|
85435
|
+
RestrictionsOnBusiness: task.entity._articles?.restrictions || "None",
|
|
85436
|
+
RestrictionsOnShareClasses: task.entity._articles?.share_restrictions_text || "",
|
|
85437
|
+
RestrictionsOnShareTransfers: task.entity._articles?.transfer_restrictions_text || "None",
|
|
85438
|
+
OtherProvisions: task.entity._articles?.other_provisions || "None",
|
|
85439
|
+
EffectiveType: determineEffectiveType(requestedDate),
|
|
85440
|
+
EffectiveDate: requestedDate,
|
|
85441
|
+
SignatureFirstName: "",
|
|
85442
|
+
SignatureLastName: "",
|
|
85443
|
+
OfficerPhoneNumber: "",
|
|
85444
|
+
HasEPL: epl.length > 0 ? 1 : 0,
|
|
85445
|
+
ExtraProvincialLicences: epl.length ? epl.map((reg) => transformEPL(reg, eplDelta[reg.uid])) : void 0,
|
|
85446
|
+
IndividualsWithSignificantControl: isListIsc ? (() => {
|
|
85447
|
+
const deltaMap = new Map((individualsWithSignificantControlDelta.individuals ?? []).map((d) => [
|
|
85448
|
+
d.affiliationId,
|
|
85449
|
+
d
|
|
85450
|
+
]));
|
|
85451
|
+
return individualsWithSignificantControl.filter((aff) => deltaMap.has(aff._id)).map((aff) => transformIndividualWithSignificantControl(aff, deltaMap.get(aff._id)));
|
|
85452
|
+
})() : void 0,
|
|
85453
|
+
AdditionalInformation: isNonPreapproved ? [
|
|
85454
|
+
{
|
|
85455
|
+
FieldSection: "Additional information on business activities",
|
|
85456
|
+
Sections: [
|
|
85457
|
+
{
|
|
85458
|
+
FieldName: "Describe the type of business/activities that the corporation intends to carry on",
|
|
85459
|
+
FieldValue: corporateNameDelta?.businessActivity ?? ""
|
|
85460
|
+
},
|
|
85461
|
+
{
|
|
85462
|
+
FieldName: "Specify the geographic area in which the corporation is likely to operate (e.g., province, territory, state or other)",
|
|
85463
|
+
FieldValue: corporateNameDelta?.locationOfOperations ?? ""
|
|
85464
|
+
},
|
|
85465
|
+
{
|
|
85466
|
+
FieldName: "Describe the type of clientele the corporation intends to have",
|
|
85467
|
+
FieldValue: corporateNameDelta?.typeOfClientele ?? ""
|
|
85468
|
+
},
|
|
85469
|
+
{
|
|
85470
|
+
FieldName: "If the proposed name contains a family name belonging to someone other than the incorporator, state the person's relationship to the corporation.",
|
|
85471
|
+
FieldValue: corporateNameDelta?.originOfKeyword ?? ""
|
|
85472
|
+
},
|
|
85473
|
+
{
|
|
85474
|
+
FieldName: "Similar names or trademarks you've registered or searches you conducted.",
|
|
85475
|
+
FieldValue: corporateNameDelta?.similarNamesSearchedOrRegistered ?? ""
|
|
85476
|
+
}
|
|
85477
|
+
]
|
|
85478
|
+
}
|
|
85479
|
+
] : void 0
|
|
85480
|
+
// NOTE: Spec does not include these; kept commented for reference.
|
|
85481
|
+
// NAICSCode: naicsData.code,
|
|
85482
|
+
// PrimaryActivity: naicsData.description,
|
|
85483
|
+
// OfficialEmail: officialBusinessEmail,
|
|
85484
|
+
// Authorization: true,
|
|
85485
|
+
};
|
|
85486
|
+
return payload;
|
|
85487
|
+
}
|
|
85488
|
+
function buildFederalFormationValidateRequest(task, deltaData) {
|
|
85489
|
+
return {
|
|
85490
|
+
Jurisdiction: "CD",
|
|
85491
|
+
Incorporation: federalFormationTaskToECore(task, deltaData)
|
|
85492
|
+
};
|
|
85493
|
+
}
|
|
85494
|
+
function transformDirector(affiliation, deltaData, consentToProvideEmails) {
|
|
85495
|
+
const address = affiliation.addresses[0] || affiliation.parent_affiliation?.addresses?.[0];
|
|
85496
|
+
return {
|
|
85497
|
+
FirstName: affiliation.participant._profile.firstName,
|
|
85498
|
+
MiddleName: affiliation.participant._profile.middleName,
|
|
85499
|
+
LastName: affiliation.participant._profile.lastName,
|
|
85500
|
+
IsResident: deltaData.residentCanadian ? 1 : 2,
|
|
85501
|
+
Address: address ? mapAddress(address) : void 0,
|
|
85502
|
+
RequiresFullAccessManagerInvitation: deltaData.inviteForFullAccessManager,
|
|
85503
|
+
FullAccessManagerInvitationEmail: affiliation.participant.communicationEmail,
|
|
85504
|
+
FullAccessManagerEmailConsent: consentToProvideEmails
|
|
85505
|
+
};
|
|
85506
|
+
}
|
|
85507
|
+
function transformIndividualWithSignificantControl(affiliation, deltaData) {
|
|
85508
|
+
const address = affiliation.addresses[0] || affiliation.parent_affiliation?.addresses?.[0];
|
|
85509
|
+
const allAddresses = [
|
|
85510
|
+
...affiliation.addresses ?? [],
|
|
85511
|
+
...affiliation.parent_affiliation?.addresses ?? []
|
|
85512
|
+
];
|
|
85513
|
+
const serviceAddress = deltaData.addressForService ? allAddresses.find((a) => a.uid === deltaData.addressForService) : void 0;
|
|
85514
|
+
return {
|
|
85515
|
+
FirstName: affiliation.participant._profile.firstName,
|
|
85516
|
+
MiddleName: affiliation.participant._profile.middleName,
|
|
85517
|
+
LastName: affiliation.participant._profile.lastName,
|
|
85518
|
+
DateOfBirth: affiliation.participant._profile.date_of_birth,
|
|
85519
|
+
CountriesOfCitizenship: (affiliation.participant?._profile?.["citizenships"] ?? []).map((c) => normalizeCountryCode(c)),
|
|
85520
|
+
CountriesOfResidence: (affiliation.participant?._profile?.tax_residency ?? []).map((tr) => normalizeCountryCode(tr.country)),
|
|
85521
|
+
Address: address ? mapAddress(address) : void 0,
|
|
85522
|
+
ServiceAddress: serviceAddress ? mapAddress(serviceAddress) : void 0,
|
|
85523
|
+
TypeOfInterest: deltaData.typeOfInterest,
|
|
85524
|
+
ShareHoldingMethod: deltaData.shareHoldingMethod,
|
|
85525
|
+
JointHoldingType: deltaData.jointHoldingType,
|
|
85526
|
+
PercentageInterest: deltaData.percentageInterest
|
|
85527
|
+
};
|
|
85528
|
+
}
|
|
85529
|
+
function transformIncorporator(incorporator) {
|
|
85530
|
+
const isIndividual = incorporator.type === "person";
|
|
85531
|
+
const incorporationType = isIndividual ? ECoreIncorporatorType.Individual : ECoreIncorporatorType.BodyCorporate;
|
|
85532
|
+
return {
|
|
85533
|
+
IncorporatorType: incorporationType,
|
|
85534
|
+
FirstName: isIndividual ? incorporator.firstName : void 0,
|
|
85535
|
+
MiddleName: isIndividual ? incorporator.middleName : void 0,
|
|
85536
|
+
LastName: isIndividual ? incorporator.lastName : void 0,
|
|
85537
|
+
BodyCorporate: !isIndividual ? incorporator.incorporator_name : void 0,
|
|
85538
|
+
Signature: `${incorporator.signatory_first_name ?? ""} ${incorporator.signatory_last_name ?? ""}, ${incorporator.signatory_title ?? ""}`,
|
|
85539
|
+
Address: mapAddress(incorporator)
|
|
85540
|
+
};
|
|
85541
|
+
}
|
|
85542
|
+
function mapAddress(address) {
|
|
85543
|
+
const country = normalizeCountryCode(address?.country ?? "");
|
|
85544
|
+
const provinceState = country === "CA" ? CANCodeToProvince(address?.province_state) : country === "US" ? USCodeToState(address?.province_state) : address?.province_state ?? "";
|
|
85545
|
+
const addressRegion = country === "CA" ? CANProvinceToCode(provinceState) : country === "US" ? USStateToCode(provinceState) : provinceState;
|
|
85546
|
+
return {
|
|
85547
|
+
CareOf: address?.components?.find((c) => c.name === "Attention")?.value || "",
|
|
85548
|
+
StreetNumber: address?.components?.find((c) => c.name === "Street Number Only")?.value || "",
|
|
85549
|
+
StreetName: address?.components?.find((c) => c.name === "Street Only")?.value || "",
|
|
85550
|
+
UnitNumber: address?.components?.find((c) => c.name === "Suite/Apartment")?.value || "",
|
|
85551
|
+
AddressLine2: "",
|
|
85552
|
+
DeliveryCode: "",
|
|
85553
|
+
City: address?.city ?? "",
|
|
85554
|
+
ProvinceState: addressRegion,
|
|
85555
|
+
Code: address?.postal_zip ?? "",
|
|
85556
|
+
Country: normalizeCountryCode(address?.country)
|
|
85557
|
+
};
|
|
85558
|
+
}
|
|
85559
|
+
function transformEPL(registration, deltaData) {
|
|
85560
|
+
const registeredOffice = [...registration.affiliations ?? []].find((aff) => aff.role.role_name === "Shared Address" && aff.role.static_title === "Registered Office");
|
|
85561
|
+
const registeredOfficeAddress = registeredOffice?.addresses?.[0] || registeredOffice?.parent_affiliation?.addresses?.[0];
|
|
85562
|
+
const operating = [...registration.affiliations ?? []].find((aff) => aff.role.role_name === "Shared Address" && aff.role.static_title === "Operating Address");
|
|
85563
|
+
const operatingAddress = operating?.addresses?.[0] || operating?.parent_affiliation?.addresses?.[0];
|
|
85564
|
+
const chiefManager = [...registration.affiliations ?? []].find((affiliation) => affiliation._id === deltaData.chiefManagerUid);
|
|
85565
|
+
const chiefManagerAddress = chiefManager?.addresses?.[0] || chiefManager?.parent_affiliation?.addresses?.[0];
|
|
85566
|
+
const signatoryManager = [...registration.affiliations ?? []].find((affiliation) => affiliation._id === deltaData.signatoryUid);
|
|
85567
|
+
const affiliations = registration.affiliations ?? [];
|
|
85568
|
+
const contactAffiliation = deltaData.contactUid ? affiliations.find((aff) => aff._id === deltaData.contactUid) : void 0;
|
|
85569
|
+
let serviceAddress;
|
|
85570
|
+
if (deltaData.serviceAddressUid) {
|
|
85571
|
+
for (const aff of affiliations) {
|
|
85572
|
+
serviceAddress = aff.addresses?.find((a) => a.uid === deltaData.serviceAddressUid) ?? aff.parent_affiliation?.addresses?.find((a) => a.uid === deltaData.serviceAddressUid);
|
|
85573
|
+
if (serviceAddress)
|
|
85574
|
+
break;
|
|
85575
|
+
}
|
|
85576
|
+
}
|
|
85577
|
+
return {
|
|
85578
|
+
Jurisdiction: registration._compliance.home_jurisdiction,
|
|
85579
|
+
epFiling: {
|
|
85580
|
+
EffectiveDate: registration.registration_date,
|
|
85581
|
+
Language: '""',
|
|
85582
|
+
RegOffice: {
|
|
85583
|
+
Address: registeredOfficeAddress ? mapAddress(registeredOfficeAddress) : {}
|
|
85584
|
+
},
|
|
85585
|
+
OperatingAddress: {
|
|
85586
|
+
Address: operatingAddress ? mapAddress(operatingAddress) : {}
|
|
85587
|
+
},
|
|
85588
|
+
DeliveryAddress: contactAffiliation ? {
|
|
85589
|
+
FirstName: contactAffiliation.participant._profile.firstName,
|
|
85590
|
+
LastName: contactAffiliation.participant._profile.lastName,
|
|
85591
|
+
PhoneNumber: contactAffiliation.participant.communicationPhone,
|
|
85592
|
+
Email: contactAffiliation.participant.communicationEmail,
|
|
85593
|
+
Office: serviceAddress ? __spreadProps(__spreadValues({}, mapAddress(serviceAddress)), {
|
|
85594
|
+
MailingAddressSameAsOffice: registeredOfficeAddress?.uid === deltaData.serviceAddressUid
|
|
85595
|
+
}) : {},
|
|
85596
|
+
PickupNumber: ""
|
|
85597
|
+
} : void 0,
|
|
85598
|
+
ChiefManager: {
|
|
85599
|
+
FirstName: chiefManager?.participant._profile.firstName,
|
|
85600
|
+
MiddleName: chiefManager?.participant._profile.middleName,
|
|
85601
|
+
LastName: chiefManager?.participant._profile.lastName,
|
|
85602
|
+
Office: chiefManagerAddress ? mapAddress(chiefManagerAddress) : {},
|
|
85603
|
+
AddressEffectiveDate: chiefManagerAddress?.effective_date,
|
|
85604
|
+
EffectiveDate: chiefManager?.start_date,
|
|
85605
|
+
PhoneNumber: chiefManager?.participant.communicationPhone
|
|
85606
|
+
},
|
|
85607
|
+
Signatory: {
|
|
85608
|
+
FirstName: signatoryManager?.participant._profile.firstName,
|
|
85609
|
+
MiddleName: signatoryManager?.participant._profile.middleName,
|
|
85610
|
+
LastName: signatoryManager?.participant._profile.lastName,
|
|
85611
|
+
SigningTitle: deltaData.signatoryRole
|
|
85612
|
+
},
|
|
85613
|
+
OfficialEmail: registeredOfficeAddress?.communications?.find((c) => c.type === "Business Email")?.value,
|
|
85614
|
+
NAICSCode: deltaData.businessActivity,
|
|
85615
|
+
PrimaryActivity: NAICS_CODE_DESCRIPTIONS[deltaData.businessActivity?.toString()]
|
|
85616
|
+
}
|
|
85617
|
+
};
|
|
85618
|
+
}
|
|
85619
|
+
function createCoverLetter2(officialBusinessEmail, contact) {
|
|
85620
|
+
return {
|
|
85621
|
+
FirstName: contact?._profile?.firstName || "",
|
|
85622
|
+
LastName: contact?._profile?.lastName || "",
|
|
85623
|
+
MiddleName: contact?._profile?.middleName || "",
|
|
85624
|
+
Email: contact?.communicationEmail || officialBusinessEmail || "",
|
|
85625
|
+
Phone: contact?.communicationPhone || "",
|
|
85626
|
+
Fax: '""'
|
|
85627
|
+
};
|
|
85628
|
+
}
|
|
85629
|
+
var init_federal_formation_mapper = __esm({
|
|
85630
|
+
"src/app/helpers/mappers/federal-formation.mapper.ts"() {
|
|
85631
|
+
init_ECoreInterfaces();
|
|
85632
|
+
init_transform_utils();
|
|
85633
|
+
init_address_utils();
|
|
85634
|
+
init_common_utils();
|
|
85635
|
+
init_FederalConstants();
|
|
85636
|
+
init_common_constants();
|
|
85637
|
+
}
|
|
85638
|
+
});
|
|
85639
|
+
|
|
85640
|
+
// src/app/entities/InitialReturnMapping.ts
|
|
85641
|
+
var OFFICER_TITLE_TO_ECORE_POSITION_CODE, ECORE_POSITION_CODE_TO_POSITION_NAME;
|
|
85642
|
+
var init_InitialReturnMapping = __esm({
|
|
85643
|
+
"src/app/entities/InitialReturnMapping.ts"() {
|
|
85644
|
+
OFFICER_TITLE_TO_ECORE_POSITION_CODE = {
|
|
85645
|
+
Chairman: "CHRM",
|
|
85646
|
+
President: "PRCH",
|
|
85647
|
+
"Vice-President": "VP",
|
|
85648
|
+
"Chief Executive Officer": "CEO",
|
|
85649
|
+
"Chief Financial Officer": "CFO",
|
|
85650
|
+
"Chief Technology Officer": "CIO",
|
|
85651
|
+
"Chief Investment Officer": "CIO",
|
|
85652
|
+
"Executive Director": "EDIR",
|
|
85653
|
+
"Managing Director": "MDIR",
|
|
85654
|
+
"Assistant Secretary": "ASEC",
|
|
85655
|
+
"General Manager": "GM",
|
|
85656
|
+
Secretary: "SECT",
|
|
85657
|
+
Treasurer: "TRES",
|
|
85658
|
+
"Assistant Treasurer": "ATRE",
|
|
85659
|
+
"Authorized Signing Officer": "ASO",
|
|
85660
|
+
Chair: "CHR",
|
|
85661
|
+
"Chair Person": "CHRP",
|
|
85662
|
+
Chairwoman: "CHRW",
|
|
85663
|
+
"Chief Administrative Officer": "CAO",
|
|
85664
|
+
"Chief Information Officer": "CIO",
|
|
85665
|
+
"Chief Manager": "CMAN",
|
|
85666
|
+
"Chief Operating Officer": "COO",
|
|
85667
|
+
Comptroller: "COMP",
|
|
85668
|
+
"Vice-Chair": "VCHR",
|
|
85669
|
+
Other: "OTH"
|
|
85670
|
+
};
|
|
85671
|
+
ECORE_POSITION_CODE_TO_POSITION_NAME = {
|
|
85672
|
+
ASEC: "ASSISTANT SECRETARY",
|
|
85673
|
+
ATRE: "ASSISTANT TREASURER",
|
|
85674
|
+
ASO: "AUTH'D SIGNING OFFICER",
|
|
85675
|
+
CHR: "CHAIR",
|
|
85676
|
+
CHRM: "CHAIRMAN",
|
|
85677
|
+
CHRP: "CHAIR PERSON",
|
|
85678
|
+
CHRW: "CHAIRWOMAN",
|
|
85679
|
+
CAO: "CHIEF ADMIN OFFICER",
|
|
85680
|
+
CEO: "CHIEF EXECUTIVE OFFICER",
|
|
85681
|
+
CFO: "CHIEF FINANCIAL OFFICER",
|
|
85682
|
+
CIO: "CHIEF INFO OFFICER",
|
|
85683
|
+
CMAN: "CHIEF MANAGER",
|
|
85684
|
+
COO: "CHIEF OPERATING OFFICER",
|
|
85685
|
+
COMP: "COMPTROLLER",
|
|
85686
|
+
EDIR: "EXECUTIVE DIRECTOR",
|
|
85687
|
+
GM: "GENERAL MANAGER",
|
|
85688
|
+
MDIR: "MANAGING DIRECTOR",
|
|
85689
|
+
OTH: "OTHER",
|
|
85690
|
+
PRCH: "PRESIDENT",
|
|
85691
|
+
SECT: "SECRETARY",
|
|
85692
|
+
TRES: "TREASURER",
|
|
85693
|
+
VCHR: "VICE-CHAIR",
|
|
85694
|
+
VP: "VICE-PRESIDENT"
|
|
85695
|
+
};
|
|
85696
|
+
}
|
|
85697
|
+
});
|
|
85698
|
+
|
|
85699
|
+
// src/app/helpers/mappers/ontario-update-maintain.mapper.ts
|
|
85700
|
+
function getFilingFormType(task) {
|
|
85701
|
+
switch (task._taskType) {
|
|
85702
|
+
case TaskType.NoticeOfChange:
|
|
85703
|
+
return ECoreGenericFilingFormType.NoticeOfChange;
|
|
85704
|
+
case TaskType.AnnualCompliance:
|
|
85705
|
+
return ECoreGenericFilingFormType.AnnualReturn;
|
|
85706
|
+
case TaskType.InitialReturn:
|
|
85707
|
+
default:
|
|
85708
|
+
return ECoreGenericFilingFormType.InitialReturn;
|
|
85709
|
+
}
|
|
85710
|
+
}
|
|
85711
|
+
function getFilingFormKey(task) {
|
|
85712
|
+
switch (task._taskType) {
|
|
85713
|
+
case TaskType.AnnualCompliance:
|
|
85714
|
+
return "AnnualReturn";
|
|
85715
|
+
case TaskType.InitialReturn:
|
|
85716
|
+
default:
|
|
85717
|
+
return "InitialReturn";
|
|
85718
|
+
}
|
|
85719
|
+
}
|
|
85720
|
+
function getInnerECoreFilingFormType(task) {
|
|
85721
|
+
switch (task._taskType) {
|
|
85722
|
+
case TaskType.NoticeOfChange:
|
|
85723
|
+
return ECoreFilingFormType.NoticeOfChange;
|
|
85724
|
+
case TaskType.AnnualCompliance:
|
|
85725
|
+
return ECoreFilingFormType.AnnualReturn;
|
|
85726
|
+
case TaskType.InitialReturn:
|
|
85727
|
+
default:
|
|
85728
|
+
return ECoreFilingFormType.InitialReturn;
|
|
85729
|
+
}
|
|
85730
|
+
}
|
|
85731
|
+
function buildOntarioUpdateMaintainValidationRequest(task, deltaData, serviceOrderId) {
|
|
85732
|
+
const getEmail = (aff) => aff.participant?.communications?.find((c) => c.type.toLowerCase().includes("email"))?.value ?? "";
|
|
85733
|
+
const buildPostalAddress = (entityAddress, deltaAddr) => {
|
|
85734
|
+
const country = normalizeCountryCode(entityAddress?.country ?? "");
|
|
85735
|
+
const province = entityAddress?.province_state ?? "";
|
|
85736
|
+
const Region = country === "CA" ? CANProvinceToCode(province) : country === "US" ? USStateToCode(province) : province;
|
|
85737
|
+
const streetOnly = getAddressComponent(entityAddress, "Street Only");
|
|
85738
|
+
const { StreetName, StreetType: StreetType2, StreetDirection: StreetDirection2 } = parseStreetAddress(streetOnly);
|
|
85739
|
+
const streetNumber = deltaAddr?.streetNumber ?? getAddressComponent(entityAddress, "Street Number Only") ?? "";
|
|
85740
|
+
const streetName = deltaAddr?.streetName ?? StreetName ?? "";
|
|
85741
|
+
const streetType = deltaAddr?.streetType ?? StreetType2 ?? null;
|
|
85742
|
+
const streetDir = deltaAddr?.streetDirection ?? (StreetDirection2 ? StreetDirection2 : null);
|
|
85743
|
+
const unitType = deltaAddr?.unitType ?? null;
|
|
85744
|
+
const unitNumber = deltaAddr?.unitNumber ?? getAddressComponent(entityAddress, "Suite/Apartment") ?? null;
|
|
85745
|
+
const careOf = getAddressComponent(entityAddress, "Attention") || entityAddress?.attention || "";
|
|
85746
|
+
const AddressLocale = country === "CA" ? "CA" : country === "US" ? "US" : "INTL";
|
|
85747
|
+
return {
|
|
85748
|
+
AddressLocale,
|
|
85749
|
+
AddressCA: AddressLocale === "CA" ? {
|
|
85750
|
+
AddressStandardLot: "standard",
|
|
85751
|
+
CityTown: entityAddress?.city,
|
|
85752
|
+
PostCode: entityAddress?.postal_zip,
|
|
85753
|
+
Suite: unitNumber ?? null,
|
|
85754
|
+
Address1: streetNumber,
|
|
85755
|
+
Address2: streetName,
|
|
85756
|
+
Address3: unitNumber ?? "",
|
|
85757
|
+
CountryCode: country,
|
|
85758
|
+
Region,
|
|
85759
|
+
RegionName: Region,
|
|
85760
|
+
CareOf: careOf,
|
|
85761
|
+
StreetNumberSuffix: "",
|
|
85762
|
+
StreetType: streetType.toString(),
|
|
85763
|
+
StreetDirection: streetDir,
|
|
85764
|
+
UnitType: unitType
|
|
85765
|
+
} : null,
|
|
85766
|
+
AddressUS: AddressLocale === "US" ? {
|
|
85767
|
+
PostCode: entityAddress?.postal_zip,
|
|
85768
|
+
CountryCode: country,
|
|
85769
|
+
Region,
|
|
85770
|
+
RegionName: Region,
|
|
85771
|
+
Address1: streetNumber,
|
|
85772
|
+
Address2: streetName,
|
|
85773
|
+
Address3: unitNumber ?? "",
|
|
85774
|
+
CityTown: entityAddress?.city
|
|
85775
|
+
} : null,
|
|
85776
|
+
AddressINTL: AddressLocale === "INTL" ? {
|
|
85777
|
+
AddressStandardLot: "standard",
|
|
85778
|
+
Region,
|
|
85779
|
+
RegionName: Region,
|
|
85780
|
+
Suite: unitNumber,
|
|
85781
|
+
PostCode: entityAddress?.postal_zip,
|
|
85782
|
+
CountryCode: country,
|
|
85783
|
+
CountryCodeName: entityAddress?.country || country,
|
|
85784
|
+
Address1: streetNumber,
|
|
85785
|
+
Address2: streetName,
|
|
85786
|
+
Address3: unitNumber ?? "",
|
|
85787
|
+
CityTown: entityAddress?.city
|
|
85788
|
+
} : null
|
|
85789
|
+
};
|
|
85790
|
+
};
|
|
85791
|
+
const buildPersonPayload = (aff, currentState, deltaEntry, isOfficer = false) => {
|
|
85792
|
+
const profile = aff.participant?._profile ?? {};
|
|
85793
|
+
const firstName = profile.firstName ?? "";
|
|
85794
|
+
const middleName = profile.middleName ?? "";
|
|
85795
|
+
const lastName = profile.lastName ?? "";
|
|
85796
|
+
const email = getEmail(aff);
|
|
85797
|
+
const electedDate = toYyyyMmDd(new Date(aff.start_date)) ?? "";
|
|
85798
|
+
const ceaseDate = toYyyyMmDd(aff.end_date) ?? "";
|
|
85799
|
+
const residentCanadian = String(deltaEntry?.residentCanadian ?? false);
|
|
85800
|
+
const entityAddr = aff.addresses?.at(0) || aff.parent_affiliation?.addresses?.at(0);
|
|
85801
|
+
const PostalAddress = buildPostalAddress(entityAddr, deltaEntry?.address);
|
|
85802
|
+
const PersonName = { FirstName: firstName, MiddleName: middleName, LastName: lastName };
|
|
85803
|
+
const position = isOfficer ? OFFICER_TITLE_TO_ECORE_POSITION_CODE[aff.role?.static_title ?? ""] ?? "" : "Director";
|
|
85804
|
+
const positionName = ECORE_POSITION_CODE_TO_POSITION_NAME[position] ?? "Director";
|
|
85805
|
+
if (!isOfficer) {
|
|
85806
|
+
switch (currentState) {
|
|
85807
|
+
case IRCurrentState.Added:
|
|
85808
|
+
return {
|
|
85809
|
+
Id: 5,
|
|
85810
|
+
CeaseDate: "",
|
|
85811
|
+
CeasedAppointedRoles: [
|
|
85812
|
+
{
|
|
85813
|
+
Id: aff._id,
|
|
85814
|
+
Position: position,
|
|
85815
|
+
PositionFullName: positionName,
|
|
85816
|
+
AppointedDate: electedDate
|
|
85817
|
+
}
|
|
85818
|
+
],
|
|
85819
|
+
ElectedDate: electedDate,
|
|
85820
|
+
EmailAddress: email,
|
|
85821
|
+
IsDirector: true,
|
|
85822
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { Position: null }),
|
|
85823
|
+
OfficerPosition: "",
|
|
85824
|
+
OfficerPositionName: "",
|
|
85825
|
+
OfficerPositionSpecified: false,
|
|
85826
|
+
PostalAddress,
|
|
85827
|
+
ResidentCanadian: residentCanadian,
|
|
85828
|
+
IsInvalid: false,
|
|
85829
|
+
CurrentState: currentState
|
|
85830
|
+
};
|
|
85831
|
+
case IRCurrentState.Ceased:
|
|
85832
|
+
return {
|
|
85833
|
+
OfficerPosition: 0,
|
|
85834
|
+
OfficerPositionSpecified: false,
|
|
85835
|
+
OfficerId: null,
|
|
85836
|
+
CeasedAppointedRoles: [
|
|
85837
|
+
{
|
|
85838
|
+
State: IRCurrentState.Added,
|
|
85839
|
+
StateName: "Changed",
|
|
85840
|
+
Position: null,
|
|
85841
|
+
PositionFullName: "Director",
|
|
85842
|
+
CeasedDate: ceaseDate,
|
|
85843
|
+
AppointedDate: electedDate,
|
|
85844
|
+
AppointedDateSpecified: true,
|
|
85845
|
+
EditAppointedDate: false
|
|
85846
|
+
}
|
|
85847
|
+
],
|
|
85848
|
+
CurrentState: currentState,
|
|
85849
|
+
CurrentStateName: "Unchanged",
|
|
85850
|
+
OfficerPositionName: "Director",
|
|
85851
|
+
Id: aff._id,
|
|
85852
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85853
|
+
IsDirector: true,
|
|
85854
|
+
ResidentCanadian: residentCanadian,
|
|
85855
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null })
|
|
85856
|
+
};
|
|
85857
|
+
case IRCurrentState.Changed:
|
|
85858
|
+
return {
|
|
85859
|
+
OfficerPosition: 0,
|
|
85860
|
+
OfficerId: null,
|
|
85861
|
+
CeasedAppointedRoles: [
|
|
85862
|
+
{
|
|
85863
|
+
State: 1,
|
|
85864
|
+
StateName: "Unchanged",
|
|
85865
|
+
Position: null,
|
|
85866
|
+
PositionFullName: "Director",
|
|
85867
|
+
CeasedDate: ceaseDate,
|
|
85868
|
+
AppointedDate: electedDate,
|
|
85869
|
+
AppointedDateSpecified: true,
|
|
85870
|
+
EditAppointedDate: false
|
|
85871
|
+
}
|
|
85872
|
+
],
|
|
85873
|
+
CurrentState: 1,
|
|
85874
|
+
CurrentStateName: "Unchanged",
|
|
85875
|
+
OfficerPositionName: "Director",
|
|
85876
|
+
Id: aff._id,
|
|
85877
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85878
|
+
IsDirector: true,
|
|
85879
|
+
ResidentCanadian: residentCanadian,
|
|
85880
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null }),
|
|
85881
|
+
CeaseDate: "",
|
|
85882
|
+
ElectedDate: "",
|
|
85883
|
+
CeasedDateSpecified: false,
|
|
85884
|
+
PostalAddress,
|
|
85885
|
+
EmailAddress: email,
|
|
85886
|
+
ReasonForRemove: null,
|
|
85887
|
+
IsInvalid: false
|
|
85888
|
+
};
|
|
85889
|
+
}
|
|
85890
|
+
} else {
|
|
85891
|
+
switch (currentState) {
|
|
85892
|
+
case IRCurrentState.Added:
|
|
85893
|
+
return {
|
|
85894
|
+
Id: aff._id,
|
|
85895
|
+
CeaseDate: "",
|
|
85896
|
+
CeasedAppointedRoles: [
|
|
85897
|
+
{
|
|
85898
|
+
Id: aff._id,
|
|
85899
|
+
Position: position,
|
|
85900
|
+
PositionFullName: positionName,
|
|
85901
|
+
AppointedDate: electedDate
|
|
85902
|
+
}
|
|
85903
|
+
],
|
|
85904
|
+
ElectedDate: electedDate,
|
|
85905
|
+
EmailAddress: email,
|
|
85906
|
+
IsDirector: false,
|
|
85907
|
+
PersonName,
|
|
85908
|
+
OfficerPosition: position,
|
|
85909
|
+
OfficerPositionName: positionName,
|
|
85910
|
+
OfficerPositionSpecified: true,
|
|
85911
|
+
PostalAddress,
|
|
85912
|
+
ResidentCanadian: residentCanadian,
|
|
85913
|
+
IsInvalid: false,
|
|
85914
|
+
CurrentState: 5
|
|
85915
|
+
};
|
|
85916
|
+
case IRCurrentState.Ceased:
|
|
85917
|
+
return {
|
|
85918
|
+
OfficerPosition: 0,
|
|
85919
|
+
OfficerPositionSpecified: true,
|
|
85920
|
+
OfficerId: null,
|
|
85921
|
+
CeasedAppointedRoles: [
|
|
85922
|
+
{
|
|
85923
|
+
State: 2,
|
|
85924
|
+
StateName: "Changed",
|
|
85925
|
+
Position: position,
|
|
85926
|
+
PositionFullName: positionName,
|
|
85927
|
+
CeasedDate: ceaseDate,
|
|
85928
|
+
AppointedDate: electedDate,
|
|
85929
|
+
AppointedDateSpecified: true,
|
|
85930
|
+
EditAppointedDate: false
|
|
85931
|
+
}
|
|
85932
|
+
],
|
|
85933
|
+
CurrentState: IRCurrentState.Ceased,
|
|
85934
|
+
CurrentStateName: "Unchanged",
|
|
85935
|
+
OfficerPositionName: positionName,
|
|
85936
|
+
Id: aff._id,
|
|
85937
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85938
|
+
IsDirector: false,
|
|
85939
|
+
ResidentCanadian: residentCanadian,
|
|
85940
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: null })
|
|
85941
|
+
};
|
|
85942
|
+
case IRCurrentState.Changed:
|
|
85943
|
+
return {
|
|
85944
|
+
OfficerPosition: 0,
|
|
85945
|
+
OfficerId: null,
|
|
85946
|
+
CeasedAppointedRoles: [
|
|
85947
|
+
{
|
|
85948
|
+
State: 1,
|
|
85949
|
+
StateName: "Unchanged",
|
|
85950
|
+
Position: position,
|
|
85951
|
+
PositionFullName: positionName,
|
|
85952
|
+
CeasedDate: ceaseDate,
|
|
85953
|
+
AppointedDate: electedDate,
|
|
85954
|
+
AppointedDateSpecified: true,
|
|
85955
|
+
EditAppointedDate: false
|
|
85956
|
+
}
|
|
85957
|
+
],
|
|
85958
|
+
CurrentState: 1,
|
|
85959
|
+
CurrentStateName: "Unchanged",
|
|
85960
|
+
OfficerPositionName: positionName,
|
|
85961
|
+
Id: aff._id,
|
|
85962
|
+
RoleId: aff.role?.role_name ?? "",
|
|
85963
|
+
IsDirector: false,
|
|
85964
|
+
ResidentCanadian: residentCanadian,
|
|
85965
|
+
PersonName: __spreadProps(__spreadValues({}, PersonName), { RoleId: aff.role?.role_name ?? "", Position: position }),
|
|
85966
|
+
CeaseDate: ceaseDate,
|
|
85967
|
+
ElectedDate: electedDate,
|
|
85968
|
+
CeasedDateSpecified: false,
|
|
85969
|
+
PostalAddress,
|
|
85970
|
+
EmailAddress: email,
|
|
85971
|
+
ReasonForRemove: null,
|
|
85972
|
+
IsInvalid: false
|
|
85973
|
+
};
|
|
85974
|
+
}
|
|
85975
|
+
}
|
|
85976
|
+
return null;
|
|
85977
|
+
};
|
|
85978
|
+
const { incomingAffiliations = [], outgoingAffiliations = [], editedAffiliations = [] } = task;
|
|
85979
|
+
const isDirectorAff = (aff) => isPrincipalAffiliation2(aff) && aff.role.role_name === "Director";
|
|
85980
|
+
const isOfficerAff = (aff) => isPrincipalAffiliation2(aff) && aff.role.role_name === "Officer";
|
|
85981
|
+
const ChangeDirectors = {
|
|
85982
|
+
AddedDirectors: incomingAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Added, deltaData.directors[a._id])),
|
|
85983
|
+
CeasedDirectors: outgoingAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Ceased, deltaData.directors[a._id])),
|
|
85984
|
+
EditedDirectors: editedAffiliations.filter(isDirectorAff).map((a) => buildPersonPayload(a, IRCurrentState.Changed, deltaData.directors[a._id]))
|
|
85985
|
+
};
|
|
85986
|
+
const ChangeOfficers = {
|
|
85987
|
+
AddedOfficers: incomingAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Added, deltaData.officers[a._id], true)),
|
|
85988
|
+
CeasedOfficers: outgoingAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Ceased, deltaData.officers[a._id], true)),
|
|
85989
|
+
EditedOfficers: editedAffiliations.filter(isOfficerAff).map((a) => buildPersonPayload(a, IRCurrentState.Changed, deltaData.officers[a._id], true))
|
|
85990
|
+
};
|
|
85991
|
+
const cert = task._ext?.certified ?? {};
|
|
85992
|
+
const certEntityAddr = cert.address;
|
|
85993
|
+
const certifierCountry = normalizeCountryCode(certEntityAddr?.country ?? "");
|
|
85994
|
+
const certifierProvince = certEntityAddr?.province_state ?? "";
|
|
85995
|
+
const certifierProv = certifierCountry === "CA" ? CANProvinceToCode(certifierProvince) : certifierCountry === "US" ? USStateToCode(certifierProvince) : certifierProvince;
|
|
85996
|
+
const isOfficerCert = cert.type !== "Director";
|
|
85997
|
+
const certDeltaAddr = deltaData.certifiedBy?.address;
|
|
85998
|
+
const certStreetOnly = getAddressComponent(certEntityAddr, "Street Only");
|
|
85999
|
+
const { StreetType: certStreetType, StreetDirection: certStreetDir } = parseStreetAddress(certStreetOnly);
|
|
86000
|
+
const certifier = {
|
|
86001
|
+
PersonName: {
|
|
86002
|
+
FirstName: cert.firstName,
|
|
86003
|
+
LastName: cert.lastName,
|
|
86004
|
+
MiddleName: cert.middleName,
|
|
86005
|
+
Position: cert.type === "Officer" ? cert.officerTitle ?? null : null
|
|
86006
|
+
},
|
|
86007
|
+
PostCode: certEntityAddr?.postal_zip ?? null,
|
|
86008
|
+
AdditionalDetails: {
|
|
86009
|
+
Email: cert.email ?? null,
|
|
86010
|
+
CareOf: getAddressComponent(certEntityAddr, "Attention") || certEntityAddr?.attention || null,
|
|
86011
|
+
AddressType: "standard",
|
|
86012
|
+
StreetNumberSuffix: "",
|
|
86013
|
+
StreetNumber: certDeltaAddr?.streetNumber ?? getAddressComponent(certEntityAddr, "Street Number Only") ?? "",
|
|
86014
|
+
StreetName: (() => {
|
|
86015
|
+
const { StreetName } = parseStreetAddress(certStreetOnly);
|
|
86016
|
+
return certDeltaAddr?.streetName ?? StreetName ?? "";
|
|
86017
|
+
})(),
|
|
86018
|
+
StreetType: certDeltaAddr?.streetType ?? certStreetType ?? null,
|
|
86019
|
+
StreetDirection: certDeltaAddr?.streetDirection ?? (certStreetDir ? certStreetDir : null),
|
|
86020
|
+
UnitType: certDeltaAddr?.unitType ?? null,
|
|
86021
|
+
UnitNumber: certDeltaAddr?.unitNumber ?? getAddressComponent(certEntityAddr, "Suite/Apartment") ?? null,
|
|
86022
|
+
CityTown: certEntityAddr?.city ?? null,
|
|
86023
|
+
PostCode: certEntityAddr?.postal_zip ?? null,
|
|
86024
|
+
Prov: certifierProv,
|
|
86025
|
+
CountryCode: certifierCountry
|
|
86026
|
+
}
|
|
86027
|
+
};
|
|
86028
|
+
const regOfficeEntityAddr = findRegisteredOffice(task.entity.affiliations);
|
|
86029
|
+
const regCountry = normalizeCountryCode(regOfficeEntityAddr?.country ?? "");
|
|
86030
|
+
const regProvince = regOfficeEntityAddr?.province_state ?? "";
|
|
86031
|
+
const regRegion = regCountry === "CA" ? CANProvinceToCode(regProvince) : regCountry === "US" ? USStateToCode(regProvince) : regProvince;
|
|
86032
|
+
const regDelta = deltaData.registeredOfficeAddress;
|
|
86033
|
+
const initType = ["CA", "US"].includes(regCountry) ? `address${regCountry}` : "addressINTL";
|
|
86034
|
+
const RegisteredHeadOfficeAddress = {
|
|
86035
|
+
AddressStandardLot: "standard",
|
|
86036
|
+
CareOf: getAddressComponent(regOfficeEntityAddr, "Attention") || regOfficeEntityAddr?.attention || null,
|
|
86037
|
+
UnitType: regDelta.unitType ?? null,
|
|
86038
|
+
UnitNumber: regDelta.unitNumber ?? null,
|
|
86039
|
+
StreetNumber: regDelta.streetNumber,
|
|
86040
|
+
StreetNumberSuffix: "",
|
|
86041
|
+
StreetName: regDelta.streetName,
|
|
86042
|
+
StreetType: regDelta.streetType ?? null,
|
|
86043
|
+
StreetDirection: regDelta.streetDirection ?? null,
|
|
86044
|
+
StreetAddressContinued: getAddressComponent(regOfficeEntityAddr, "Suite/Apartment") ?? "",
|
|
86045
|
+
CityTown: regOfficeEntityAddr?.city ?? null,
|
|
86046
|
+
Region: regRegion,
|
|
86047
|
+
RegionName: regRegion,
|
|
86048
|
+
PostCode: regOfficeEntityAddr?.postal_zip ?? null,
|
|
86049
|
+
CountryCode: regCountry,
|
|
86050
|
+
InitType: initType
|
|
86051
|
+
};
|
|
86052
|
+
const contactAffiliation = task.entity.affiliations?.find((a) => a._id === deltaData.contactUid);
|
|
86053
|
+
const authorizationType = ["Director", "Officer"].includes(cert.type ?? "") ? AuthorizationType.DirectorOrOfficer : AuthorizationType.Other;
|
|
86054
|
+
const isOther = authorizationType === AuthorizationType.Other;
|
|
86055
|
+
const filingFormKey = getFilingFormKey(task);
|
|
86056
|
+
const filingFormType = getFilingFormType(task);
|
|
86057
|
+
const eCoreFilingFormType = getInnerECoreFilingFormType(task);
|
|
86058
|
+
const isAnnualReturn = isAnnualReturnTask(task);
|
|
86059
|
+
const annualReturnYear = isAnnualReturn ? (new Date(task._ext?._reference_date).getFullYear() || (/* @__PURE__ */ new Date()).getFullYear()).toString() : void 0;
|
|
86060
|
+
return {
|
|
86061
|
+
Jurisdiction: "ON",
|
|
86062
|
+
FilingFormType: filingFormType,
|
|
86063
|
+
PayloadType: 1,
|
|
86064
|
+
CurrentDataServiceOrderId: serviceOrderId,
|
|
86065
|
+
Filing: {
|
|
86066
|
+
Form: {
|
|
86067
|
+
[filingFormKey]: {
|
|
86068
|
+
FilingFormType: eCoreFilingFormType,
|
|
86069
|
+
CorporationInfo: {
|
|
86070
|
+
AuthorizedRepresentative: {
|
|
86071
|
+
FirstName: cert.firstName,
|
|
86072
|
+
LastName: cert.lastName,
|
|
86073
|
+
MiddleName: cert.middleName
|
|
86074
|
+
},
|
|
86075
|
+
CurrentData: __spreadProps(__spreadValues({
|
|
86076
|
+
Reference: deltaData.referenceNumber ?? null,
|
|
86077
|
+
Docket: deltaData.docketNumber ?? null,
|
|
86078
|
+
EntityIdentifier: Number(task.entity._profile.corp_number)
|
|
86079
|
+
}, isAnnualReturn ? { AnnualReturnYear: annualReturnYear } : {}), {
|
|
86080
|
+
ChangeCertification: {
|
|
86081
|
+
DirectorOfficerCertifier: !isOther ? __spreadProps(__spreadValues({}, certifier), {
|
|
86082
|
+
directorOrOfficer: isOfficerCert ? "officer" : "director"
|
|
86083
|
+
}) : null,
|
|
86084
|
+
IndividualCertifier: isOther ? certifier : null,
|
|
86085
|
+
AuthorizationType: authorizationType
|
|
86086
|
+
},
|
|
86087
|
+
ContactInformation: contactAffiliation ? OntarioUpdateMaintainFormHelper.generateContact(contactAffiliation) : null,
|
|
86088
|
+
RegisteredHeadOfficeAddress,
|
|
86089
|
+
ChangeDirectors,
|
|
86090
|
+
ChangeOfficers
|
|
86091
|
+
})
|
|
86092
|
+
}
|
|
86093
|
+
}
|
|
86094
|
+
}
|
|
86095
|
+
}
|
|
86096
|
+
};
|
|
86097
|
+
}
|
|
86098
|
+
var init_ontario_update_maintain_mapper = __esm({
|
|
86099
|
+
"src/app/helpers/mappers/ontario-update-maintain.mapper.ts"() {
|
|
86100
|
+
init_common_enums();
|
|
86101
|
+
init_app_enums();
|
|
86102
|
+
init_common_utils();
|
|
86103
|
+
init_address_utils();
|
|
86104
|
+
init_common_models();
|
|
86105
|
+
init_initial_return_enums();
|
|
86106
|
+
init_ontario_update_maintain_helper();
|
|
86107
|
+
init_InitialReturnMapping();
|
|
86108
|
+
}
|
|
86109
|
+
});
|
|
86110
|
+
|
|
85969
86111
|
// src/app/components/filing/filing.component.ts
|
|
85970
86112
|
function FilingComponent_Conditional_7_Template(rf, ctx) {
|
|
85971
86113
|
if (rf & 1) {
|
|
@@ -86108,6 +86250,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86108
86250
|
init_federal_formation_service();
|
|
86109
86251
|
init_ontario_update_maintain_service();
|
|
86110
86252
|
init_initial_return_payload_helper();
|
|
86253
|
+
init_ontario_formation_mapper();
|
|
86254
|
+
init_federal_formation_mapper();
|
|
86255
|
+
init_ontario_update_maintain_mapper();
|
|
86111
86256
|
init_core();
|
|
86112
86257
|
init_button();
|
|
86113
86258
|
FilingComponent = class _FilingComponent {
|
|
@@ -86180,17 +86325,20 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86180
86325
|
prevData = signal(void 0);
|
|
86181
86326
|
title = computed(() => {
|
|
86182
86327
|
const task = this.task();
|
|
86328
|
+
if (!task)
|
|
86329
|
+
return "";
|
|
86330
|
+
const jurisdiction = isOntarioTask(task) ? "Ontario" : "Federal";
|
|
86183
86331
|
if (isInitialReturn(task)) {
|
|
86184
|
-
return
|
|
86332
|
+
return `File ${jurisdiction} Initial Return`;
|
|
86185
86333
|
}
|
|
86186
86334
|
if (isNoticeOfChangeTask(task)) {
|
|
86187
|
-
return
|
|
86335
|
+
return `File ${jurisdiction} Notice of Change`;
|
|
86188
86336
|
}
|
|
86189
86337
|
if (isAnnualReturnTask(task)) {
|
|
86190
|
-
return
|
|
86338
|
+
return `File ${jurisdiction} Annual Return`;
|
|
86191
86339
|
}
|
|
86192
86340
|
if (isFormationTask2(task)) {
|
|
86193
|
-
return
|
|
86341
|
+
return `File ${jurisdiction} Articles of Incorporation`;
|
|
86194
86342
|
}
|
|
86195
86343
|
return "";
|
|
86196
86344
|
});
|
|
@@ -86200,6 +86348,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86200
86348
|
if (config2) {
|
|
86201
86349
|
this.updateMaintainService.setConfig(config2);
|
|
86202
86350
|
this.ontarioFormationService.setConfig(config2);
|
|
86351
|
+
this.federalFormationService.setConfig(config2);
|
|
86203
86352
|
}
|
|
86204
86353
|
});
|
|
86205
86354
|
addStylesVariables();
|
|
@@ -86216,7 +86365,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86216
86365
|
return;
|
|
86217
86366
|
}
|
|
86218
86367
|
if (isUpdateMaintain(task)) {
|
|
86219
|
-
if (deltaData) {
|
|
86368
|
+
if (deltaData.serviceOrderId) {
|
|
86220
86369
|
this.defineInitialStep();
|
|
86221
86370
|
}
|
|
86222
86371
|
const serviceOrderId = deltaData?.serviceOrderId;
|
|
@@ -86245,7 +86394,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86245
86394
|
this.errors.set([]);
|
|
86246
86395
|
const signature = this._signature();
|
|
86247
86396
|
if (signature) {
|
|
86248
|
-
const
|
|
86397
|
+
const requestBody = buildOntarioFormationValidateRequest(signature.task, deltaData);
|
|
86398
|
+
const response = yield this.ontarioFormationService.validate(signature, requestBody, this.validateOptions() ?? {});
|
|
86249
86399
|
const serviceOrderId = response["ServiceOrderId"] ?? "";
|
|
86250
86400
|
this.filingValidateSuccess.emit({
|
|
86251
86401
|
searchOrFilingType: "ontarioIncorporation",
|
|
@@ -86256,7 +86406,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86256
86406
|
documentName: this.validateOptions()?.documentName ?? "Incorporation Draft",
|
|
86257
86407
|
documentType: "pdf"
|
|
86258
86408
|
});
|
|
86259
|
-
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId, validatedData: JSON.parse(JSON.stringify(
|
|
86409
|
+
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId, validatedData: JSON.parse(JSON.stringify(requestBody)) }));
|
|
86260
86410
|
this.close.emit();
|
|
86261
86411
|
}
|
|
86262
86412
|
} catch (response) {
|
|
@@ -86277,7 +86427,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86277
86427
|
this.errors.set([]);
|
|
86278
86428
|
const signature = this._signature();
|
|
86279
86429
|
if (signature) {
|
|
86280
|
-
const
|
|
86430
|
+
const requestBody = buildFederalFormationValidateRequest(signature.task, deltaData);
|
|
86431
|
+
const response = yield this.federalFormationService.validate(signature, requestBody, this.validateOptions() ?? {});
|
|
86432
|
+
const serviceOrderId = response["ServiceOrderId"] ?? "";
|
|
86281
86433
|
this.filingValidateSuccess.emit({
|
|
86282
86434
|
searchOrFilingType: "ontarioIncorporation",
|
|
86283
86435
|
serviceOrderId: response["ServiceOrderId"] ?? "",
|
|
@@ -86287,7 +86439,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86287
86439
|
documentName: this.validateOptions()?.documentName ?? "Incorporation Draft",
|
|
86288
86440
|
documentType: "pdf"
|
|
86289
86441
|
});
|
|
86290
|
-
this.deltaDataChange.emit(deltaData);
|
|
86442
|
+
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId, validatedData: JSON.parse(JSON.stringify(requestBody)) }));
|
|
86291
86443
|
this.close.emit();
|
|
86292
86444
|
}
|
|
86293
86445
|
} catch (response) {
|
|
@@ -86303,6 +86455,28 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86303
86455
|
}
|
|
86304
86456
|
onFederalFormationSubmit() {
|
|
86305
86457
|
return __async(this, null, function* () {
|
|
86458
|
+
try {
|
|
86459
|
+
this.isLoading.set(true);
|
|
86460
|
+
this.errors.set([]);
|
|
86461
|
+
const signature = this._signature();
|
|
86462
|
+
if (signature) {
|
|
86463
|
+
const serviceOrderId = this.task()?.deltaData.serviceOrderId;
|
|
86464
|
+
if (serviceOrderId) {
|
|
86465
|
+
yield this.federalFormationService.submitFormationRequest(signature, serviceOrderId, this.validateOptions());
|
|
86466
|
+
this.close.emit();
|
|
86467
|
+
} else {
|
|
86468
|
+
console.error("There is no Service Id");
|
|
86469
|
+
}
|
|
86470
|
+
}
|
|
86471
|
+
} catch (response) {
|
|
86472
|
+
console.error(response);
|
|
86473
|
+
const errors = JSON.parse(JSON.stringify(response))?.validateResult?.["Errors"];
|
|
86474
|
+
if (errors?.length) {
|
|
86475
|
+
this.errors.set(this.parseError(errors));
|
|
86476
|
+
}
|
|
86477
|
+
} finally {
|
|
86478
|
+
this.isLoading.set(false);
|
|
86479
|
+
}
|
|
86306
86480
|
});
|
|
86307
86481
|
}
|
|
86308
86482
|
onOntarioFormationSubmit() {
|
|
@@ -86355,8 +86529,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86355
86529
|
const signature = this._signature();
|
|
86356
86530
|
if (signature) {
|
|
86357
86531
|
try {
|
|
86358
|
-
|
|
86359
|
-
this.
|
|
86532
|
+
const requestBody = buildOntarioUpdateMaintainValidationRequest(task, deltaData, this.serviceOrderId);
|
|
86533
|
+
yield this.updateMaintainService.submitInitialReturnValidationToECore(signature, requestBody, this.validateOptions());
|
|
86534
|
+
this.deltaDataChange.emit(__spreadProps(__spreadValues({}, deltaData), { serviceOrderId: this.serviceOrderId, validatedData: JSON.parse(JSON.stringify(requestBody)) }));
|
|
86360
86535
|
this.close.emit();
|
|
86361
86536
|
} catch (response) {
|
|
86362
86537
|
const errors = JSON.parse(JSON.stringify(response))?.validateResult?.["Errors"];
|
|
@@ -86432,14 +86607,35 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86432
86607
|
defineInitialStep() {
|
|
86433
86608
|
const task = this.task();
|
|
86434
86609
|
const taskFromDeltaData = task?.deltaData?.validatedData;
|
|
86435
|
-
|
|
86610
|
+
const currentMappedPayload = task ? this.getMappedValidatedPayload(task) : void 0;
|
|
86611
|
+
if (!taskFromDeltaData || !task || !currentMappedPayload) {
|
|
86436
86612
|
this.activeStep.set(Step.Validate);
|
|
86437
86613
|
return;
|
|
86438
86614
|
}
|
|
86439
|
-
const dataWasChanged = !deepEqual(
|
|
86615
|
+
const dataWasChanged = !deepEqual(currentMappedPayload, copyWithShape(currentMappedPayload, taskFromDeltaData));
|
|
86440
86616
|
this.dataWasChanged.set(dataWasChanged);
|
|
86441
86617
|
this.activeStep.set(dataWasChanged ? Step.Validate : Step.FilingPreview);
|
|
86442
86618
|
}
|
|
86619
|
+
getMappedValidatedPayload(task) {
|
|
86620
|
+
const deltaData = task?.deltaData;
|
|
86621
|
+
if (!deltaData) {
|
|
86622
|
+
return void 0;
|
|
86623
|
+
}
|
|
86624
|
+
if (isFormationTask2(task)) {
|
|
86625
|
+
if (isOntarioTask(task)) {
|
|
86626
|
+
return buildOntarioFormationValidateRequest(task, deltaData);
|
|
86627
|
+
}
|
|
86628
|
+
return buildFederalFormationValidateRequest(task, deltaData);
|
|
86629
|
+
}
|
|
86630
|
+
if (isUpdateMaintain(task) && isOntarioTask(task)) {
|
|
86631
|
+
const serviceOrderId = deltaData?.serviceOrderId ?? this.serviceOrderId;
|
|
86632
|
+
if (!serviceOrderId) {
|
|
86633
|
+
return void 0;
|
|
86634
|
+
}
|
|
86635
|
+
return buildOntarioUpdateMaintainValidationRequest(task, deltaData, serviceOrderId);
|
|
86636
|
+
}
|
|
86637
|
+
return void 0;
|
|
86638
|
+
}
|
|
86443
86639
|
static \u0275fac = function FilingComponent_Factory(__ngFactoryType__) {
|
|
86444
86640
|
return new (__ngFactoryType__ || _FilingComponent)();
|
|
86445
86641
|
};
|
|
@@ -86494,7 +86690,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86494
86690
|
MatIcon,
|
|
86495
86691
|
FederalComponent,
|
|
86496
86692
|
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 });
|
|
86693
|
+
], 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
86694
|
};
|
|
86499
86695
|
(() => {
|
|
86500
86696
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(FilingComponent, [{
|
|
@@ -86570,11 +86766,11 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86570
86766
|
}\r
|
|
86571
86767
|
</div>\r
|
|
86572
86768
|
</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'] }]
|
|
86769
|
+
`, 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
86770
|
}], () => [], null);
|
|
86575
86771
|
})();
|
|
86576
86772
|
(() => {
|
|
86577
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber:
|
|
86773
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber: 65 });
|
|
86578
86774
|
})();
|
|
86579
86775
|
}
|
|
86580
86776
|
});
|
|
@@ -90760,6 +90956,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
90760
90956
|
en_default = {
|
|
90761
90957
|
"Add Individuals With Significant Control": "Add Individuals With Significant Control",
|
|
90762
90958
|
"File Ontario Articles of Incorporation": "File Ontario Articles of Incorporation",
|
|
90959
|
+
"File Ontario Initial Return": "File Ontario Initial Return",
|
|
90960
|
+
"File Ontario Notice of Change": "File Ontario Notice of Change",
|
|
90961
|
+
"File Ontario Annual Return": "File Ontario Annual Return",
|
|
90962
|
+
"File Federal Articles of Incorporation": "File Federal Articles of Incorporation",
|
|
90963
|
+
"File Federal Initial Return": "File Federal Initial Return",
|
|
90964
|
+
"File Federal Notice of Change": "File Federal Notice of Change",
|
|
90965
|
+
"File Federal Annual Return": "File Federal Annual Return",
|
|
90763
90966
|
"File Initial Return": "File Initial Return",
|
|
90764
90967
|
"You have unsaved changes": "You have unsaved changes",
|
|
90765
90968
|
"Do you want to save before closing?": "Do you want to save before closing?",
|
|
@@ -91061,6 +91264,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
91061
91264
|
fr_default = {
|
|
91062
91265
|
"Add Individuals With Significant Control": "Ajouter des particuliers ayant un contr\xF4le important",
|
|
91063
91266
|
"File Ontario Articles of Incorporation": "D\xE9poser les statuts constitutifs de l'Ontario",
|
|
91267
|
+
"File Ontario Initial Return": "D\xE9claration initiale de l'Ontario",
|
|
91268
|
+
"File Ontario Notice of Change": "D\xE9poser un avis de modification de l'Ontario",
|
|
91269
|
+
"File Ontario Annual Return": "D\xE9poser le rapport annuel de l'Ontario",
|
|
91270
|
+
"File Federal Articles of Incorporation": "D\xE9poser les statuts constitutifs f\xE9d\xE9raux",
|
|
91271
|
+
"File Federal Initial Return": "D\xE9claration initiale f\xE9d\xE9rale",
|
|
91272
|
+
"File Federal Notice of Change": "D\xE9poser un avis de modification f\xE9d\xE9ral",
|
|
91273
|
+
"File Federal Annual Return": "D\xE9poser le rapport annuel f\xE9d\xE9ral",
|
|
91064
91274
|
"File Initial Return": "D\xE9claration initiale",
|
|
91065
91275
|
"You have unsaved changes": "Vous avez des modifications non enregistr\xE9es",
|
|
91066
91276
|
"Do you want to save before closing?": "Voulez-vous enregistrer avant de fermer ?",
|