@dyedurham/search-and-file-widget 1.6.17 → 1.6.19
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 +1652 -1744
- package/package.json +1 -1
package/dnd-filing-shell.js
CHANGED
|
@@ -56041,6 +56041,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
56041
56041
|
IRFormControls2["AffiliationAddressType"] = "affiliationAddressType";
|
|
56042
56042
|
IRFormControls2["AffiliationType"] = "AffiliationType";
|
|
56043
56043
|
IRFormControls2["CurrentName"] = "currentName";
|
|
56044
|
+
IRFormControls2["IsThisChangeToAnExistingEntity"] = "isThisChangeToAnExistingEntity";
|
|
56045
|
+
IRFormControls2["IsThisChangeToAnExistingEntityVisible"] = "isThisChangeToAnExistingEntityVisible";
|
|
56044
56046
|
})(IRFormControls || (IRFormControls = {}));
|
|
56045
56047
|
(function(FormationFormGroups2) {
|
|
56046
56048
|
FormationFormGroups2["ReferenceNumbers"] = "Reference Numbers";
|
|
@@ -57003,17 +57005,21 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
57003
57005
|
function transformIncorporators(incorporators, deltaData) {
|
|
57004
57006
|
return incorporators?.map((incorporator) => {
|
|
57005
57007
|
const isEntity = incorporator.type?.toLowerCase() === "entity";
|
|
57008
|
+
const id = incorporator.profileID?.toString();
|
|
57009
|
+
const incorporatorDelta = id ? deltaData.incorporators?.[id] : void 0;
|
|
57006
57010
|
if (isEntity) {
|
|
57007
|
-
return {
|
|
57011
|
+
return __spreadProps(__spreadValues({
|
|
57008
57012
|
FirstName: incorporator.signatory_first_name,
|
|
57009
57013
|
LastName: incorporator.signatory_last_name,
|
|
57010
|
-
IncorporatorType: ECoreIncorporatorType.
|
|
57014
|
+
IncorporatorType: ECoreIncorporatorType.NonRegCorporate,
|
|
57011
57015
|
Title: incorporator.signatory_title,
|
|
57016
|
+
CompanyName: incorporator.incorporator_name
|
|
57017
|
+
}, incorporator.incorporator_reg_number && {
|
|
57012
57018
|
CompanyNumber: incorporator.incorporator_reg_number
|
|
57013
|
-
}
|
|
57019
|
+
}), {
|
|
57020
|
+
Address: transformAddress(incorporator, incorporatorDelta?.address)
|
|
57021
|
+
});
|
|
57014
57022
|
} else {
|
|
57015
|
-
const id = incorporator.profileID?.toString();
|
|
57016
|
-
const incorporatorDelta = id ? deltaData.incorporators?.[id] : void 0;
|
|
57017
57023
|
return __spreadProps(__spreadValues({
|
|
57018
57024
|
FirstName: incorporator.firstName,
|
|
57019
57025
|
LastName: incorporator.lastName
|
|
@@ -58116,7 +58122,15 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
58116
58122
|
return "";
|
|
58117
58123
|
return str.toLowerCase().replace(/(?:^|\s|[-/])\S/g, (match) => match.toUpperCase());
|
|
58118
58124
|
}
|
|
58119
|
-
function
|
|
58125
|
+
function generateAffiliationKey(affiliation) {
|
|
58126
|
+
const person = affiliation.participant;
|
|
58127
|
+
const firstName = person._profile.firstName || "";
|
|
58128
|
+
const lastName = person._profile.lastName || "";
|
|
58129
|
+
const middleName = person._profile.middleName || "";
|
|
58130
|
+
const role = affiliation.role.static_title || "";
|
|
58131
|
+
return [firstName.toLowerCase(), middleName.toLowerCase(), lastName.toLowerCase(), role.toLowerCase()].filter(Boolean).join(" ");
|
|
58132
|
+
}
|
|
58133
|
+
function generateAffiliationFullName(affiliation) {
|
|
58120
58134
|
const person = affiliation.participant;
|
|
58121
58135
|
const firstName = person._profile.firstName || "";
|
|
58122
58136
|
const lastName = person._profile.lastName || "";
|
|
@@ -59137,32 +59151,34 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
59137
59151
|
init_app_enums();
|
|
59138
59152
|
init_ontario_formation_form_constants();
|
|
59139
59153
|
OntarioUpdateMaintainFormHelper = class _OntarioUpdateMaintainFormHelper {
|
|
59154
|
+
static normalizePersonKey(value) {
|
|
59155
|
+
return (value ?? "").toLowerCase().replace(/\s+/g, " ").trim();
|
|
59156
|
+
}
|
|
59157
|
+
static getCurrentPersonData(comparisonData, affiliation) {
|
|
59158
|
+
const lookupName = _OntarioUpdateMaintainFormHelper.normalizePersonKey(generateAffiliationFullName(affiliation));
|
|
59159
|
+
if (!lookupName || !comparisonData?.persons?.size) {
|
|
59160
|
+
return void 0;
|
|
59161
|
+
}
|
|
59162
|
+
for (const [personKey, personData] of comparisonData.persons.entries()) {
|
|
59163
|
+
const normalizedKey = _OntarioUpdateMaintainFormHelper.normalizePersonKey(personKey);
|
|
59164
|
+
if (normalizedKey === lookupName || normalizedKey.startsWith(`${lookupName} -`)) {
|
|
59165
|
+
return personData;
|
|
59166
|
+
}
|
|
59167
|
+
}
|
|
59168
|
+
return void 0;
|
|
59169
|
+
}
|
|
59140
59170
|
static generateInitialForm(task, comparisonData) {
|
|
59141
59171
|
const config2 = {};
|
|
59142
59172
|
const { _ext, incomingAffiliations, outgoingAffiliations } = task;
|
|
59143
59173
|
const deltaData = task.deltaData;
|
|
59144
59174
|
const addedOfficers = incomingAffiliations?.filter((aff) => {
|
|
59145
|
-
|
|
59146
|
-
const currentData = comparisonData?.officers.get(key);
|
|
59147
|
-
return !currentData && isPrincipalAffiliation(aff) && aff.role.role_name === "Officer";
|
|
59175
|
+
return isPrincipalAffiliation(aff) && aff.role.role_name === "Officer";
|
|
59148
59176
|
}) || [];
|
|
59149
59177
|
const ceasedOfficers = outgoingAffiliations?.filter((aff) => isPrincipalAffiliation(aff) && aff.role.role_name === "Officer") || [];
|
|
59150
|
-
const editedOfficers = incomingAffiliations?.filter((aff) => {
|
|
59151
|
-
const key = generateAffiliationTitle(aff);
|
|
59152
|
-
const currentData = comparisonData?.officers.get(key);
|
|
59153
|
-
return currentData && isPrincipalAffiliation(aff) && aff.role.role_name === "Officer";
|
|
59154
|
-
}) || [];
|
|
59155
59178
|
const addedDirectors = incomingAffiliations?.filter((aff) => {
|
|
59156
|
-
|
|
59157
|
-
const currentData = comparisonData?.directors.get(key);
|
|
59158
|
-
return !currentData && isPrincipalAffiliation(aff) && aff.role.role_name === "Director";
|
|
59179
|
+
return isPrincipalAffiliation(aff) && aff.role.role_name === "Director";
|
|
59159
59180
|
}) || [];
|
|
59160
59181
|
const ceasedDirectors = outgoingAffiliations?.filter((aff) => isPrincipalAffiliation(aff) && aff.role.role_name === "Director") || [];
|
|
59161
|
-
const editedDirectors = incomingAffiliations?.filter((aff) => {
|
|
59162
|
-
const key = generateAffiliationTitle(aff);
|
|
59163
|
-
const currentData = comparisonData?.directors.get(key);
|
|
59164
|
-
return currentData && isPrincipalAffiliation(aff) && aff.role.role_name === "Director";
|
|
59165
|
-
}) || [];
|
|
59166
59182
|
const address = findRegisteredOffice(task.entity.affiliations);
|
|
59167
59183
|
const cert = _ext.certified;
|
|
59168
59184
|
config2[InitialReturnFillingFormGroups.General] = _OntarioUpdateMaintainFormHelper.generateGeneralInfo(task);
|
|
@@ -59174,26 +59190,20 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
59174
59190
|
const directorDeltaData = deltaData?.directors ?? {};
|
|
59175
59191
|
config2[InitialReturnFillingFormGroups.Directors] = new FormArray([
|
|
59176
59192
|
...addedDirectors.map((admin) => {
|
|
59177
|
-
const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, directorDeltaData[admin._id]);
|
|
59193
|
+
const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, comparisonData, directorDeltaData[admin._id]);
|
|
59178
59194
|
form.addControl(IRFormControls.IsCanadianResident, new FormControl(directorDeltaData[admin._id]?.residentCanadian ?? false));
|
|
59179
59195
|
return form;
|
|
59180
59196
|
}),
|
|
59181
59197
|
...ceasedDirectors.map((admin) => {
|
|
59182
|
-
const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, directorDeltaData[admin._id]);
|
|
59183
|
-
form.addControl(IRFormControls.IsCanadianResident, new FormControl(directorDeltaData[admin._id]?.residentCanadian ?? false));
|
|
59184
|
-
return form;
|
|
59185
|
-
}),
|
|
59186
|
-
...editedDirectors.map((admin) => {
|
|
59187
|
-
const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Update, directorDeltaData[admin._id]);
|
|
59198
|
+
const form = _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, comparisonData, directorDeltaData[admin._id]);
|
|
59188
59199
|
form.addControl(IRFormControls.IsCanadianResident, new FormControl(directorDeltaData[admin._id]?.residentCanadian ?? false));
|
|
59189
59200
|
return form;
|
|
59190
59201
|
})
|
|
59191
59202
|
]);
|
|
59192
59203
|
const officerDeltaData = deltaData?.officers ?? {};
|
|
59193
59204
|
config2[InitialReturnFillingFormGroups.Officers] = new FormArray([
|
|
59194
|
-
...addedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, officerDeltaData[admin._id])),
|
|
59195
|
-
...ceasedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, officerDeltaData[admin._id]))
|
|
59196
|
-
...editedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Update, officerDeltaData[admin._id]))
|
|
59205
|
+
...addedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Add, comparisonData, officerDeltaData[admin._id])),
|
|
59206
|
+
...ceasedOfficers.map((admin) => _OntarioUpdateMaintainFormHelper.generateAffiliationForm(admin, IRAffiliationType.Ceased, comparisonData, officerDeltaData[admin._id]))
|
|
59197
59207
|
]);
|
|
59198
59208
|
if (cert) {
|
|
59199
59209
|
config2[InitialReturnFillingFormGroups.CertifiedBy] = _OntarioUpdateMaintainFormHelper.generateCertification(cert, deltaData?.certifiedBy);
|
|
@@ -59293,19 +59303,28 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
59293
59303
|
config2[IRFormControls.AffiliationAddressType] = new FormControl(AffiliationAddressType.CanadianSuite);
|
|
59294
59304
|
return config2;
|
|
59295
59305
|
}
|
|
59296
|
-
static generateAffiliationForm(affiliation, affiliationType, deltaData) {
|
|
59306
|
+
static generateAffiliationForm(affiliation, affiliationType, comparisonData, deltaData) {
|
|
59297
59307
|
const address = affiliation.addresses.at(0) || affiliation.parent_affiliation?.addresses?.at(0);
|
|
59298
59308
|
const communications = affiliation.participant.communications;
|
|
59299
59309
|
const emailAddress = affiliation.participant.communicationEmail ?? communications?.find((item) => item.type.toLowerCase().includes("email"))?.value;
|
|
59300
|
-
const name =
|
|
59310
|
+
const name = generateAffiliationFullName(affiliation);
|
|
59311
|
+
const key = generateAffiliationKey(affiliation).toLowerCase();
|
|
59312
|
+
const currentData = _OntarioUpdateMaintainFormHelper.getCurrentPersonData(comparisonData, affiliation);
|
|
59301
59313
|
let correctedAffiliationType = affiliationType;
|
|
59314
|
+
let isThisChangeToAnExistingEntity = false;
|
|
59315
|
+
let isThisChangeToAnExistingEntityVisible = false;
|
|
59302
59316
|
if (deltaData) {
|
|
59303
59317
|
if (deltaData.currentName) {
|
|
59318
|
+
isThisChangeToAnExistingEntity = true;
|
|
59319
|
+
isThisChangeToAnExistingEntityVisible = true;
|
|
59320
|
+
}
|
|
59321
|
+
correctedAffiliationType = IRAffiliationType.Update;
|
|
59322
|
+
} else {
|
|
59323
|
+
if (currentData) {
|
|
59304
59324
|
correctedAffiliationType = IRAffiliationType.Update;
|
|
59305
59325
|
} else {
|
|
59306
|
-
|
|
59307
|
-
|
|
59308
|
-
}
|
|
59326
|
+
isThisChangeToAnExistingEntity = false;
|
|
59327
|
+
isThisChangeToAnExistingEntityVisible = true;
|
|
59309
59328
|
}
|
|
59310
59329
|
}
|
|
59311
59330
|
const config2 = {
|
|
@@ -59316,11 +59335,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
59316
59335
|
[IRFormControls.CeaseDate]: new FormControl(affiliation.end_date ? toYyyyMmDd(affiliation.end_date) : ""),
|
|
59317
59336
|
[IRFormControls.Email]: new FormControl(emailAddress ?? ""),
|
|
59318
59337
|
[IRFormControls.AffiliationType]: new FormControl(correctedAffiliationType),
|
|
59319
|
-
[IRFormControls.CurrentName]: new FormControl(deltaData ? deltaData.currentName : IRAffiliationType.Update ===
|
|
59338
|
+
[IRFormControls.CurrentName]: new FormControl(deltaData ? deltaData.currentName : IRAffiliationType.Update === correctedAffiliationType ? key : "", requiredIf(IRFormControls.IsThisChangeToAnExistingEntity)),
|
|
59339
|
+
[IRFormControls.IsThisChangeToAnExistingEntity]: new FormControl(isThisChangeToAnExistingEntity),
|
|
59340
|
+
[IRFormControls.IsThisChangeToAnExistingEntityVisible]: new FormControl(isThisChangeToAnExistingEntityVisible)
|
|
59320
59341
|
};
|
|
59321
59342
|
const form = new FormGroup(__spreadValues(__spreadValues({}, config2), this.generateAddressFormConfig(address, _OntarioUpdateMaintainFormHelper.mapAddressDelta(deltaData?.address))));
|
|
59322
59343
|
const affiliationAddressType = form.get(IRFormControls.AffiliationAddressType)?.value;
|
|
59323
|
-
updateFormControlsEnableState(form, [...addressEnabledFieldsMap[affiliationAddressType], IRFormControls.CurrentName]);
|
|
59344
|
+
updateFormControlsEnableState(form, [...addressEnabledFieldsMap[affiliationAddressType], IRFormControls.CurrentName, IRFormControls.IsThisChangeToAnExistingEntity]);
|
|
59324
59345
|
return form;
|
|
59325
59346
|
}
|
|
59326
59347
|
static mapAddressDelta(addr) {
|
|
@@ -60623,7 +60644,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
60623
60644
|
(() => {
|
|
60624
60645
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ConfirmModalComponent, [{
|
|
60625
60646
|
type: Component,
|
|
60626
|
-
args: [{ selector: "confirm-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, TranslatePipe], template: '@let config = modalConfig();\n<div class="confirm-modal">\n <div class="confirm-modal-header">\n <h1 class="confirm-modal-header-title d-flex align-items-center">\n @if (config.icon) {\n <span class="material-icons-outlined icon mr-s">delete</span>\n }\n\n {{ config.title | translate }}\n </h1>\n </div>\n\n <div class="confirm-modal-text">{{ config.text | translate }}</div>\n\n <div class="confirm-modal-actions">\n <button mat-stroked-button (click)="closeModal()">\n <span class="body-1-semibold">{{ config.cancelButton | translate }}</span>\n </button>\n <button\n class="confirm-modal-actions-submit"\n mat-flat-button\n color="primary"\n (click)="closeModal(true)"\n >\n <span class="body-1-semibold">{{ config.confirmButton | translate}}</span>\n </button>\n </div>\n</div>\n', styles: ['/* src/app/components/confirm-modal/confirm-modal.component.scss */\n:host {\n --filing-modal-color-grey: #444444;\n --filing-modal-color-dark-blue: #485673;\n --filing-modal-color-grey-mid: #A0A0A0;\n --filing-modal-color-light-blue: #3778E4;\n --filing-modal-color-black: #444444;\n}\nmat-icon {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1 {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2 {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3 {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 20px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\n.body-1-regular {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0;\n}\n.black {\n color: var(--filing-modal-color-black);\n}\n.grey {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue {\n color: var(--filing-modal-color-light-blue);\n}\n.filling {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\n.filling {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n.filing .mat-primary .mat-pseudo-checkbox-checked,\n.filing .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n.filing .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n:host {\n display: flex;\n flex-direction: column;\n gap: 12px;\n height: 100%;\n padding: 12px;\n}\n:host .confirm-modal {\n display: flex;\n flex-direction: column;\n flex: 1;\n gap: 16px;\n}\n:host .confirm-modal-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .confirm-modal-header-title {\n font-size: 20px;\n color: var(--neutral-20);\n}\n:host .confirm-modal-header-icon {\n font-size: 14px;\n height: 20px;\n}\n:host .confirm-modal-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n}\n:host .confirm-modal-actions button {\n margin: 0;\n}\n:host .confirm-modal-actions-submit {\n padding-left: 30px;\n padding-right: 30px;\n background-color: #3778e4;\n color: white;\n border-radius: 4px !important;\n}\n/*# sourceMappingURL=confirm-modal.component.css.map */\n'] }]
|
|
60647
|
+
args: [{ selector: "confirm-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, TranslatePipe], template: '@let config = modalConfig();\r\n<div class="confirm-modal">\r\n <div class="confirm-modal-header">\r\n <h1 class="confirm-modal-header-title d-flex align-items-center">\r\n @if (config.icon) {\r\n <span class="material-icons-outlined icon mr-s">delete</span>\r\n }\r\n\r\n {{ config.title | translate }}\r\n </h1>\r\n </div>\r\n\r\n <div class="confirm-modal-text">{{ config.text | translate }}</div>\r\n\r\n <div class="confirm-modal-actions">\r\n <button mat-stroked-button (click)="closeModal()">\r\n <span class="body-1-semibold">{{ config.cancelButton | translate }}</span>\r\n </button>\r\n <button\r\n class="confirm-modal-actions-submit"\r\n mat-flat-button\r\n color="primary"\r\n (click)="closeModal(true)"\r\n >\r\n <span class="body-1-semibold">{{ config.confirmButton | translate}}</span>\r\n </button>\r\n </div>\r\n</div>\r\n', styles: ['/* src/app/components/confirm-modal/confirm-modal.component.scss */\n:host {\n --filing-modal-color-grey: #444444;\n --filing-modal-color-dark-blue: #485673;\n --filing-modal-color-grey-mid: #A0A0A0;\n --filing-modal-color-light-blue: #3778E4;\n --filing-modal-color-black: #444444;\n}\nmat-icon {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1 {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2 {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3 {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 20px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\n.body-1-regular {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0;\n}\n.black {\n color: var(--filing-modal-color-black);\n}\n.grey {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue {\n color: var(--filing-modal-color-light-blue);\n}\n.filling {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\n.filling {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n.filing .mat-primary .mat-pseudo-checkbox-checked,\n.filing .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n.filing .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n:host {\n display: flex;\n flex-direction: column;\n gap: 12px;\n height: 100%;\n padding: 12px;\n}\n:host .confirm-modal {\n display: flex;\n flex-direction: column;\n flex: 1;\n gap: 16px;\n}\n:host .confirm-modal-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .confirm-modal-header-title {\n font-size: 20px;\n color: var(--neutral-20);\n}\n:host .confirm-modal-header-icon {\n font-size: 14px;\n height: 20px;\n}\n:host .confirm-modal-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n}\n:host .confirm-modal-actions button {\n margin: 0;\n}\n:host .confirm-modal-actions-submit {\n padding-left: 30px;\n padding-right: 30px;\n background-color: #3778e4;\n color: white;\n border-radius: 4px !important;\n}\n/*# sourceMappingURL=confirm-modal.component.css.map */\n'] }]
|
|
60627
60648
|
}], null, null);
|
|
60628
60649
|
})();
|
|
60629
60650
|
(() => {
|
|
@@ -62867,7 +62888,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
62867
62888
|
(() => {
|
|
62868
62889
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ChipComponent, [{
|
|
62869
62890
|
type: Component,
|
|
62870
|
-
args: [{ selector: "chip", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="chip {{type()}}">\n <span class="body-1-semibold">{{title() | translate}}</span>\n</div>\n', styles: ["/* src/app/components/chip/chip.component.scss */\n:host .chip {\n padding: 0 15px;\n height: 20px;\n display: flex;\n align-items: center;\n border-radius: 4px;\n border: 1px solid #A1B5C7;\n}\n:host .chip.warning {\n color: #CFB95A;\n}\n:host .chip.danger {\n color: #C56868;\n}\n:host .chip.success {\n color: #4CAF51;\n}\n/*# sourceMappingURL=chip.component.css.map */\n"] }]
|
|
62891
|
+
args: [{ selector: "chip", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="chip {{type()}}">\r\n <span class="body-1-semibold">{{title() | translate}}</span>\r\n</div>\r\n', styles: ["/* src/app/components/chip/chip.component.scss */\n:host .chip {\n padding: 0 15px;\n height: 20px;\n display: flex;\n align-items: center;\n border-radius: 4px;\n border: 1px solid #A1B5C7;\n}\n:host .chip.warning {\n color: #CFB95A;\n}\n:host .chip.danger {\n color: #C56868;\n}\n:host .chip.success {\n color: #4CAF51;\n}\n/*# sourceMappingURL=chip.component.css.map */\n"] }]
|
|
62871
62892
|
}], null, null);
|
|
62872
62893
|
})();
|
|
62873
62894
|
(() => {
|
|
@@ -63086,45 +63107,45 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
63086
63107
|
animate("100ms cubic-bezier(0.4, 0.0, 0.2, 1)")
|
|
63087
63108
|
])
|
|
63088
63109
|
])
|
|
63089
|
-
], template: `<div [class.padded]="padded()" [class.border]="border()" class="expandable-card"
|
|
63090
|
-
<div (click)="toggle()" class="expandable-card-header"
|
|
63091
|
-
<h2 [class.list-item]="isListItem()" class="expandable-card-header-title">{{title() | translate}}
|
|
63092
|
-
@if (role()) {
|
|
63093
|
-
<span>({{role()}})</span
|
|
63094
|
-
}
|
|
63095
|
-
</h2
|
|
63096
|
-
<div [class.list-item]="isListItem()" class="expandable-card-header-container"
|
|
63097
|
-
@if (isStatusIcon()) {
|
|
63098
|
-
@if (!isValid()) {
|
|
63099
|
-
<mat-icon class="expandable-card-header-status-icon"> error_outline </mat-icon
|
|
63100
|
-
}
|
|
63101
|
-
}
|
|
63102
|
-
|
|
63103
|
-
@if(chipType()) {
|
|
63104
|
-
<chip [type]="chipType()" [title]="chipText()"
|
|
63105
|
-
}
|
|
63106
|
-
|
|
63107
|
-
@if (isExpandable()) {
|
|
63108
|
-
<mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon
|
|
63109
|
-
}
|
|
63110
|
-
</div
|
|
63111
|
-
</div
|
|
63112
|
-
|
|
63113
|
-
<div class="expandable-card-content"
|
|
63114
|
-
[@expandCollapse]="isExpanded()"
|
|
63115
|
-
<div class="expandable-card-content-item"
|
|
63116
|
-
<ng-content></ng-content
|
|
63117
|
-
|
|
63118
|
-
@if (removable()) {
|
|
63119
|
-
<div class="expandable-card-content-item-actions"
|
|
63120
|
-
<span (click)="remove.emit()" class="body-1-regular light-blue pointer">{{'Remove' | translate}}</span
|
|
63121
|
-
</div
|
|
63122
|
-
}
|
|
63123
|
-
|
|
63124
|
-
|
|
63125
|
-
</div
|
|
63126
|
-
</div
|
|
63127
|
-
</div
|
|
63110
|
+
], template: `<div [class.padded]="padded()" [class.border]="border()" class="expandable-card">\r
|
|
63111
|
+
<div (click)="toggle()" class="expandable-card-header">\r
|
|
63112
|
+
<h2 [class.list-item]="isListItem()" class="expandable-card-header-title">{{title() | translate}}\r
|
|
63113
|
+
@if (role()) {\r
|
|
63114
|
+
<span>({{role()}})</span>\r
|
|
63115
|
+
}\r
|
|
63116
|
+
</h2>\r
|
|
63117
|
+
<div [class.list-item]="isListItem()" class="expandable-card-header-container">\r
|
|
63118
|
+
@if (isStatusIcon()) {\r
|
|
63119
|
+
@if (!isValid()) {\r
|
|
63120
|
+
<mat-icon class="expandable-card-header-status-icon"> error_outline </mat-icon>\r
|
|
63121
|
+
}\r
|
|
63122
|
+
}\r
|
|
63123
|
+
\r
|
|
63124
|
+
@if(chipType()) {\r
|
|
63125
|
+
<chip [type]="chipType()" [title]="chipText()"/>\r
|
|
63126
|
+
}\r
|
|
63127
|
+
\r
|
|
63128
|
+
@if (isExpandable()) {\r
|
|
63129
|
+
<mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon>\r
|
|
63130
|
+
}\r
|
|
63131
|
+
</div>\r
|
|
63132
|
+
</div>\r
|
|
63133
|
+
\r
|
|
63134
|
+
<div class="expandable-card-content"\r
|
|
63135
|
+
[@expandCollapse]="isExpanded()">\r
|
|
63136
|
+
<div class="expandable-card-content-item">\r
|
|
63137
|
+
<ng-content></ng-content>\r
|
|
63138
|
+
\r
|
|
63139
|
+
@if (removable()) {\r
|
|
63140
|
+
<div class="expandable-card-content-item-actions">\r
|
|
63141
|
+
<span (click)="remove.emit()" class="body-1-regular light-blue pointer">{{'Remove' | translate}}</span>\r
|
|
63142
|
+
</div>\r
|
|
63143
|
+
}\r
|
|
63144
|
+
\r
|
|
63145
|
+
\r
|
|
63146
|
+
</div>\r
|
|
63147
|
+
</div>\r
|
|
63148
|
+
</div>\r
|
|
63128
63149
|
`, styles: ["/* src/app/components/expandable-card/expandable-card.component.scss */\n:host .expandable-card {\n border-radius: 8px;\n height: 100%;\n}\n:host .expandable-card-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .expandable-card-header-status-icon {\n font-weight: 400;\n color: #F1D01E;\n font-size: 22px;\n height: 22px;\n width: 22px;\n}\n:host .expandable-card-header-status-icon.added {\n color: #44aa00;\n}\n:host .expandable-card-header-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n:host .expandable-card-header-title {\n color: #666666;\n font-weight: 700;\n font-size: 14px;\n}\n:host .expandable-card-header-title.list-item {\n color: var(--filing-modal-color-dark-blue);\n font-weight: 600;\n}\n:host .expandable-card-header-container {\n display: flex;\n align-items: center;\n gap: 16px;\n}\n:host .expandable-card-header-container.list-item mat-icon {\n font-size: 16px;\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon) {\n display: flex;\n align-items: center;\n justify-content: center;\n transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1);\n transform: rotate(-90deg);\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon).rotated {\n transform: rotate(90deg);\n}\n:host .expandable-card-content {\n height: 100%;\n}\n:host .expandable-card-content-item {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n:host .expandable-card-content-item-actions {\n display: flex;\n justify-content: flex-end;\n width: 100%;\n}\n:host .expandable-card.border {\n box-shadow:\n 0 1px 2px rgba(0, 0, 0, 0.08),\n 0 2px 4px rgba(0, 0, 0, 0.12),\n 0 0 0 1px rgba(0, 0, 0, 0.04);\n margin: 1px;\n}\n:host .expandable-card.padded {\n padding: 16px;\n}\n/*# sourceMappingURL=expandable-card.component.css.map */\n"] }]
|
|
63129
63150
|
}], () => [], null);
|
|
63130
63151
|
})();
|
|
@@ -74389,7 +74410,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
74389
74410
|
MatFormFieldModule,
|
|
74390
74411
|
MatInputModule,
|
|
74391
74412
|
MatAutocompleteModule
|
|
74392
|
-
], template: '<mat-form-field appearance="outline">\n <input\n matInput\n [formControl]="control()"\n [placeholder]="placeholder()"\n [required]="required()"\n [matAutocomplete]="auto"\n />\n\n <mat-autocomplete #auto="matAutocomplete">\n @for (option of filteredOptions(); track option) {\n <mat-option [value]="option.value">\n {{ option.label }}\n </mat-option>\n }\n </mat-autocomplete>\n</mat-form-field>\n' }]
|
|
74413
|
+
], template: '<mat-form-field appearance="outline">\r\n <input\r\n matInput\r\n [formControl]="control()"\r\n [placeholder]="placeholder()"\r\n [required]="required()"\r\n [matAutocomplete]="auto"\r\n />\r\n\r\n <mat-autocomplete #auto="matAutocomplete">\r\n @for (option of filteredOptions(); track option) {\r\n <mat-option [value]="option.value">\r\n {{ option.label }}\r\n </mat-option>\r\n }\r\n </mat-autocomplete>\r\n</mat-form-field>\r\n' }]
|
|
74393
74414
|
}], null, null);
|
|
74394
74415
|
})();
|
|
74395
74416
|
(() => {
|
|
@@ -78532,7 +78553,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
78532
78553
|
}
|
|
78533
78554
|
], imports: [
|
|
78534
78555
|
MatCheckbox
|
|
78535
|
-
], template: '<div class="checkbox-list">\n <div class="body-1-regular grey">{{ title() }}</div>\n\n @for (item of items(); track item.value) {\n <label class="checkbox-list-item">\n <mat-checkbox\n [checked]="isChecked(item.value)"\n [disabled]="disabled"\n (change)="toggle(item.value)"\n >\n <span class="body-1-regular grey">{{ item.label }}</span>\n </mat-checkbox>\n </label>\n }\n</div>\n', styles: ["/* src/app/components/checkbox-list/checkbox-list.component.scss */\n:host .checkbox-list {\n display: flex;\n flex-direction: column;\n gap: 12px;\n padding-bottom: 16px;\n}\n:host .checkbox-list-item {\n padding-left: 16px;\n}\n/*# sourceMappingURL=checkbox-list.component.css.map */\n"] }]
|
|
78556
|
+
], template: '<div class="checkbox-list">\r\n <div class="body-1-regular grey">{{ title() }}</div>\r\n\r\n @for (item of items(); track item.value) {\r\n <label class="checkbox-list-item">\r\n <mat-checkbox\r\n [checked]="isChecked(item.value)"\r\n [disabled]="disabled"\r\n (change)="toggle(item.value)"\r\n >\r\n <span class="body-1-regular grey">{{ item.label }}</span>\r\n </mat-checkbox>\r\n </label>\r\n }\r\n</div>\r\n', styles: ["/* src/app/components/checkbox-list/checkbox-list.component.scss */\n:host .checkbox-list {\n display: flex;\n flex-direction: column;\n gap: 12px;\n padding-bottom: 16px;\n}\n:host .checkbox-list-item {\n padding-left: 16px;\n}\n/*# sourceMappingURL=checkbox-list.component.css.map */\n"] }]
|
|
78536
78557
|
}], null, null);
|
|
78537
78558
|
})();
|
|
78538
78559
|
(() => {
|
|
@@ -79244,234 +79265,234 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
79244
79265
|
{ provide: DateAdapter, useClass: MomentDateAdapter },
|
|
79245
79266
|
{ provide: MAT_DATE_FORMATS, useValue: MY_DATE_FORMATS },
|
|
79246
79267
|
{ provide: MAT_DATE_LOCALE, useValue: "en-GB" }
|
|
79247
|
-
], template: `@let fields = this.config()
|
|
79248
|
-
@let form = this.form()
|
|
79249
|
-
|
|
79250
|
-
<section
|
|
79251
|
-
<div [class.submitted]="isSubmitted()" class="filling-form-fields" [formGroup]="form"
|
|
79252
|
-
@for (field of fields; track field.formControlName + $index; let last = $last) {
|
|
79253
|
-
@if (!field.isVisible || field.isVisible(form)) {
|
|
79254
|
-
@let previousValue = validationConfig()?.[field.formControlName]
|
|
79255
|
-
|
|
79256
|
-
@switch (field.type) {
|
|
79257
|
-
@case (types.Select) {
|
|
79258
|
-
<div class="filling-form-fields-item {{field.class ?? 'span-6'}}"
|
|
79259
|
-
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label
|
|
79260
|
-
@if (label) {
|
|
79261
|
-
<span class="filling-form-fields-item-label body-1-regular"
|
|
79262
|
-
{{ (label | translate) + (field.required ? " *" : "") }}
|
|
79263
|
-
</span
|
|
79264
|
-
}
|
|
79265
|
-
<mat-form-field appearance="outline"
|
|
79266
|
-
@let control = form.get(field.formControlName)
|
|
79267
|
-
|
|
79268
|
-
<input
|
|
79269
|
-
matInput
|
|
79270
|
-
[formControlName]="field.formControlName"
|
|
79271
|
-
[matAutocomplete]="autocompleteRef"
|
|
79272
|
-
(change)="field.onChange && field.onChange(form)"
|
|
79273
|
-
|
|
79274
|
-
|
|
79275
|
-
<mat-autocomplete
|
|
79276
|
-
#autocompleteRef="matAutocomplete"
|
|
79277
|
-
[displayWith]="getDisplayFn(field)"
|
|
79278
|
-
(optionSelected)="field.onChange && field.onChange(form)"
|
|
79279
|
-
|
|
79280
|
-
@for (option of getFilteredOptions(field); track option.value) {
|
|
79281
|
-
<mat-option
|
|
79282
|
-
class="filing-form-group-select-option"
|
|
79283
|
-
[value]="option.value"
|
|
79284
|
-
|
|
79285
|
-
{{ option.label | translate }}
|
|
79286
|
-
</mat-option
|
|
79287
|
-
}
|
|
79288
|
-
@if (getFilteredOptions(field).length === 0) {
|
|
79289
|
-
<mat-option disabled>{{ 'No options found' | translate }}</mat-option
|
|
79290
|
-
}
|
|
79291
|
-
</mat-autocomplete
|
|
79292
|
-
|
|
79293
|
-
@if (control?.value && !control?.disabled) {
|
|
79294
|
-
<div matSuffix class="suffix-container"
|
|
79295
|
-
<button mat-icon-button (click)="control?.reset(); field.onChange && field.onChange(form)"
|
|
79296
|
-
<mat-icon>close</mat-icon
|
|
79297
|
-
</button
|
|
79298
|
-
|
|
79299
|
-
<mat-icon class="arrow-icon">arrow_drop_down</mat-icon
|
|
79300
|
-
</div
|
|
79301
|
-
} @else {
|
|
79302
|
-
<mat-icon matSuffix>arrow_drop_down</mat-icon
|
|
79303
|
-
}
|
|
79304
|
-
|
|
79305
|
-
<mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error
|
|
79306
|
-
</mat-form-field
|
|
79307
|
-
</div
|
|
79308
|
-
}
|
|
79309
|
-
|
|
79310
|
-
@case (types.Checkbox) {
|
|
79311
|
-
<div [class.last]="last" class="filling-form-fields-checkbox {{field.class ?? 'span-6'}}"
|
|
79312
|
-
<mat-checkbox
|
|
79313
|
-
(change)="field.onChange && field.onChange(form)"
|
|
79314
|
-
[formControlName]="field.formControlName"
|
|
79315
|
-
|
|
79316
|
-
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label
|
|
79317
|
-
<div
|
|
79318
|
-
<span class="body-1-regular black" [class.warning]="!!previousValue">{{
|
|
79319
|
-
label | translate
|
|
79320
|
-
}}</span
|
|
79321
|
-
@if (previousValue != null) {
|
|
79322
|
-
<mat-icon
|
|
79323
|
-
[class.warning]="true"
|
|
79324
|
-
class="filling-form-fields-item-icon"
|
|
79325
|
-
matSuffix
|
|
79326
|
-
>warning_amber</mat-icon
|
|
79327
|
-
|
|
79328
|
-
}
|
|
79329
|
-
</div
|
|
79330
|
-
</mat-checkbox
|
|
79331
|
-
|
|
79332
|
-
@if (previousValue != null) {
|
|
79333
|
-
<mat-hint
|
|
79334
|
-
[class.warning]="true"
|
|
79335
|
-
class="filling-form-fields-item-hint"
|
|
79336
|
-
>{{ 'Previously saved value' | translate }}: {{ previousValue ? ('checked' | translate) : ('unchecked' | translate) }}</mat-hint
|
|
79337
|
-
|
|
79338
|
-
}
|
|
79339
|
-
</div
|
|
79340
|
-
}
|
|
79341
|
-
|
|
79342
|
-
@case (types.Empty) {
|
|
79343
|
-
<div class="filling-form-fields-empty {{field.class ?? 'span-6'}}"></div
|
|
79344
|
-
}
|
|
79345
|
-
@case (types.Autocomplete) {
|
|
79346
|
-
<div class="filling-form-fields-item {{field.class ?? 'span-6'}}"
|
|
79347
|
-
@if (field.label) {
|
|
79348
|
-
<span class="filling-form-fields-item-label body-1-regular"
|
|
79349
|
-
{{ (field.label | translate) + (field.required ? " *" : "") }}
|
|
79350
|
-
</span
|
|
79351
|
-
}
|
|
79352
|
-
<autocomplete-field
|
|
79353
|
-
[options]="field.options ?? []"
|
|
79354
|
-
[control]="getFormControl(field.formControlName)"
|
|
79355
|
-
[required]="field.required ?? false"
|
|
79356
|
-
|
|
79357
|
-
</div
|
|
79358
|
-
}
|
|
79359
|
-
|
|
79360
|
-
@case (types.Date) {
|
|
79361
|
-
<div
|
|
79362
|
-
class="filling-form-fields-item {{field.class ?? 'span-6'}}"
|
|
79363
|
-
[class.warning]="!!previousValue"
|
|
79364
|
-
|
|
79365
|
-
@if (field.label) {
|
|
79366
|
-
<span
|
|
79367
|
-
class="filling-form-fields-item-label body-1-regular"
|
|
79368
|
-
[class.warning]="!!previousValue"
|
|
79369
|
-
|
|
79370
|
-
{{ (field.label | translate) + (field.required ? " *" : "") }}
|
|
79371
|
-
</span
|
|
79372
|
-
}
|
|
79373
|
-
|
|
79374
|
-
<mat-form-field appearance="outline"
|
|
79375
|
-
<input
|
|
79376
|
-
matInput
|
|
79377
|
-
[matDatepicker]="picker"
|
|
79378
|
-
[formControlName]="field.formControlName"
|
|
79379
|
-
(dateChange)="field.onChange && field.onChange(form)"
|
|
79380
|
-
|
|
79381
|
-
<mat-datepicker-toggle matSuffix [for]="picker"
|
|
79382
|
-
<mat-icon matDatepickerToggleIcon>calendar_today</mat-icon
|
|
79383
|
-
</mat-datepicker-toggle
|
|
79384
|
-
<mat-datepicker #picker></mat-datepicker
|
|
79385
|
-
|
|
79386
|
-
@if (previousValue != null) {
|
|
79387
|
-
<mat-hint
|
|
79388
|
-
[class.warning]="true"
|
|
79389
|
-
class="filling-form-fields-item-hint"
|
|
79390
|
-
|
|
79391
|
-
{{ 'Previously saved value' | translate }}: {{ previousValue }}
|
|
79392
|
-
</mat-hint
|
|
79393
|
-
}
|
|
79394
|
-
|
|
79395
|
-
<mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error
|
|
79396
|
-
</mat-form-field
|
|
79397
|
-
</div
|
|
79398
|
-
}
|
|
79399
|
-
|
|
79400
|
-
@case (types.Input) {
|
|
79401
|
-
<div
|
|
79402
|
-
[class.warning]="!!previousValue"
|
|
79403
|
-
class="filling-form-fields-item {{field.class ?? 'span-6'}}"
|
|
79404
|
-
|
|
79405
|
-
@if (field.label) {
|
|
79406
|
-
<span
|
|
79407
|
-
[class.warning]="!!previousValue"
|
|
79408
|
-
class="filling-form-fields-item-label body-1-regular"
|
|
79409
|
-
|
|
79410
|
-
{{ (field.label | translate) + (field.required ? " *" : "") }}
|
|
79411
|
-
</span
|
|
79412
|
-
|
|
79413
|
-
<mat-form-field appearance="outline"
|
|
79414
|
-
<input
|
|
79415
|
-
matInput
|
|
79416
|
-
[readonly]="field.readonly"
|
|
79417
|
-
[formControlName]="field.formControlName"
|
|
79418
|
-
(input)="field.onChange && field.onChange(form)"
|
|
79419
|
-
|
|
79420
|
-
|
|
79421
|
-
@if (previousValue != null) {
|
|
79422
|
-
<mat-hint
|
|
79423
|
-
[class.warning]="true"
|
|
79424
|
-
class="filling-form-fields-item-hint"
|
|
79425
|
-
>{{ 'Previously saved value' | translate }}: {{ previousValue }}</mat-hint
|
|
79426
|
-
|
|
79427
|
-
}
|
|
79428
|
-
|
|
79429
|
-
@if (previousValue != null) {
|
|
79430
|
-
<mat-icon
|
|
79431
|
-
[class.warning]="true"
|
|
79432
|
-
class="filling-form-fields-item-icon"
|
|
79433
|
-
matSuffix
|
|
79434
|
-
>warning_amber</mat-icon
|
|
79435
|
-
|
|
79436
|
-
}
|
|
79437
|
-
|
|
79438
|
-
<mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error
|
|
79439
|
-
</mat-form-field
|
|
79440
|
-
}
|
|
79441
|
-
</div
|
|
79442
|
-
}
|
|
79443
|
-
@case (types.TextArea) {
|
|
79444
|
-
<div class="filling-form-fields-item text-area {{field.class ?? 'span-6'}}"
|
|
79445
|
-
@if (field.label) {
|
|
79446
|
-
<span class="filling-form-fields-item-label body-1-regular"
|
|
79447
|
-
{{ (field.label | translate) + (field.required ? " *" : "") }}
|
|
79448
|
-
</span
|
|
79449
|
-
|
|
79450
|
-
<mat-form-field appearance="outline"
|
|
79451
|
-
<textarea
|
|
79452
|
-
matInput
|
|
79453
|
-
[readonly]="field.readonly"
|
|
79454
|
-
[formControlName]="field.formControlName"
|
|
79455
|
-
(change)="field.onChange && field.onChange(form)"
|
|
79456
|
-
></textarea
|
|
79457
|
-
</mat-form-field
|
|
79458
|
-
}
|
|
79459
|
-
</div
|
|
79460
|
-
}
|
|
79461
|
-
@case (types.CheckboxList) {
|
|
79462
|
-
<checkbox-list class="{{field.class}}" [formControlName]="field.formControlName" [items]="field.options ?? []"
|
|
79463
|
-
}
|
|
79464
|
-
@case (types.Text) {
|
|
79465
|
-
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn, prevData()) : field.label
|
|
79466
|
-
@if (label) {
|
|
79467
|
-
<p [class.last]="last" class="filling-form-fields-item-text body-1-regular grey" [class]="field.class" [innerHTML]="label" ></p
|
|
79468
|
-
}
|
|
79469
|
-
}
|
|
79470
|
-
}
|
|
79471
|
-
}
|
|
79472
|
-
}
|
|
79473
|
-
</div
|
|
79474
|
-
</section
|
|
79268
|
+
], template: `@let fields = this.config();\r
|
|
79269
|
+
@let form = this.form();\r
|
|
79270
|
+
\r
|
|
79271
|
+
<section>\r
|
|
79272
|
+
<div [class.submitted]="isSubmitted()" class="filling-form-fields" [formGroup]="form">\r
|
|
79273
|
+
@for (field of fields; track field.formControlName + $index; let last = $last) {\r
|
|
79274
|
+
@if (!field.isVisible || field.isVisible(form)) {\r
|
|
79275
|
+
@let previousValue = validationConfig()?.[field.formControlName];\r
|
|
79276
|
+
\r
|
|
79277
|
+
@switch (field.type) {\r
|
|
79278
|
+
@case (types.Select) {\r
|
|
79279
|
+
<div class="filling-form-fields-item {{field.class ?? 'span-6'}}">\r
|
|
79280
|
+
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;\r
|
|
79281
|
+
@if (label) {\r
|
|
79282
|
+
<span class="filling-form-fields-item-label body-1-regular">\r
|
|
79283
|
+
{{ (label | translate) + (field.required ? " *" : "") }}\r
|
|
79284
|
+
</span>\r
|
|
79285
|
+
}\r
|
|
79286
|
+
<mat-form-field appearance="outline">\r
|
|
79287
|
+
@let control = form.get(field.formControlName);\r
|
|
79288
|
+
\r
|
|
79289
|
+
<input\r
|
|
79290
|
+
matInput\r
|
|
79291
|
+
[formControlName]="field.formControlName"\r
|
|
79292
|
+
[matAutocomplete]="autocompleteRef"\r
|
|
79293
|
+
(change)="field.onChange && field.onChange(form)"\r
|
|
79294
|
+
/>\r
|
|
79295
|
+
\r
|
|
79296
|
+
<mat-autocomplete\r
|
|
79297
|
+
#autocompleteRef="matAutocomplete"\r
|
|
79298
|
+
[displayWith]="getDisplayFn(field)"\r
|
|
79299
|
+
(optionSelected)="field.onChange && field.onChange(form)"\r
|
|
79300
|
+
>\r
|
|
79301
|
+
@for (option of getFilteredOptions(field); track option.value) {\r
|
|
79302
|
+
<mat-option\r
|
|
79303
|
+
class="filing-form-group-select-option"\r
|
|
79304
|
+
[value]="option.value"\r
|
|
79305
|
+
>\r
|
|
79306
|
+
{{ option.label | translate }}\r
|
|
79307
|
+
</mat-option>\r
|
|
79308
|
+
}\r
|
|
79309
|
+
@if (getFilteredOptions(field).length === 0) {\r
|
|
79310
|
+
<mat-option disabled>{{ 'No options found' | translate }}</mat-option>\r
|
|
79311
|
+
}\r
|
|
79312
|
+
</mat-autocomplete>\r
|
|
79313
|
+
\r
|
|
79314
|
+
@if (control?.value && !control?.disabled) {\r
|
|
79315
|
+
<div matSuffix class="suffix-container">\r
|
|
79316
|
+
<button mat-icon-button (click)="control?.reset(); field.onChange && field.onChange(form)">\r
|
|
79317
|
+
<mat-icon>close</mat-icon>\r
|
|
79318
|
+
</button>\r
|
|
79319
|
+
\r
|
|
79320
|
+
<mat-icon class="arrow-icon">arrow_drop_down</mat-icon>\r
|
|
79321
|
+
</div>\r
|
|
79322
|
+
} @else {\r
|
|
79323
|
+
<mat-icon matSuffix>arrow_drop_down</mat-icon>\r
|
|
79324
|
+
}\r
|
|
79325
|
+
\r
|
|
79326
|
+
<mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>\r
|
|
79327
|
+
</mat-form-field>\r
|
|
79328
|
+
</div>\r
|
|
79329
|
+
}\r
|
|
79330
|
+
\r
|
|
79331
|
+
@case (types.Checkbox) {\r
|
|
79332
|
+
<div [class.last]="last" class="filling-form-fields-checkbox {{field.class ?? 'span-6'}}">\r
|
|
79333
|
+
<mat-checkbox\r
|
|
79334
|
+
(change)="field.onChange && field.onChange(form)"\r
|
|
79335
|
+
[formControlName]="field.formControlName"\r
|
|
79336
|
+
>\r
|
|
79337
|
+
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn) : field.label;\r
|
|
79338
|
+
<div>\r
|
|
79339
|
+
<span class="body-1-regular black" [class.warning]="!!previousValue">{{\r
|
|
79340
|
+
label | translate\r
|
|
79341
|
+
}}</span>\r
|
|
79342
|
+
@if (previousValue != null) {\r
|
|
79343
|
+
<mat-icon\r
|
|
79344
|
+
[class.warning]="true"\r
|
|
79345
|
+
class="filling-form-fields-item-icon"\r
|
|
79346
|
+
matSuffix\r
|
|
79347
|
+
>warning_amber</mat-icon\r
|
|
79348
|
+
>\r
|
|
79349
|
+
}\r
|
|
79350
|
+
</div>\r
|
|
79351
|
+
</mat-checkbox>\r
|
|
79352
|
+
\r
|
|
79353
|
+
@if (previousValue != null) {\r
|
|
79354
|
+
<mat-hint\r
|
|
79355
|
+
[class.warning]="true"\r
|
|
79356
|
+
class="filling-form-fields-item-hint"\r
|
|
79357
|
+
>{{ 'Previously saved value' | translate }}: {{ previousValue ? ('checked' | translate) : ('unchecked' | translate) }}</mat-hint\r
|
|
79358
|
+
>\r
|
|
79359
|
+
}\r
|
|
79360
|
+
</div>\r
|
|
79361
|
+
}\r
|
|
79362
|
+
\r
|
|
79363
|
+
@case (types.Empty) {\r
|
|
79364
|
+
<div class="filling-form-fields-empty {{field.class ?? 'span-6'}}"></div>\r
|
|
79365
|
+
}\r
|
|
79366
|
+
@case (types.Autocomplete) {\r
|
|
79367
|
+
<div class="filling-form-fields-item {{field.class ?? 'span-6'}}">\r
|
|
79368
|
+
@if (field.label) {\r
|
|
79369
|
+
<span class="filling-form-fields-item-label body-1-regular">\r
|
|
79370
|
+
{{ (field.label | translate) + (field.required ? " *" : "") }}\r
|
|
79371
|
+
</span>\r
|
|
79372
|
+
}\r
|
|
79373
|
+
<autocomplete-field\r
|
|
79374
|
+
[options]="field.options ?? []"\r
|
|
79375
|
+
[control]="getFormControl(field.formControlName)"\r
|
|
79376
|
+
[required]="field.required ?? false"\r
|
|
79377
|
+
/>\r
|
|
79378
|
+
</div>\r
|
|
79379
|
+
}\r
|
|
79380
|
+
\r
|
|
79381
|
+
@case (types.Date) {\r
|
|
79382
|
+
<div\r
|
|
79383
|
+
class="filling-form-fields-item {{field.class ?? 'span-6'}}"\r
|
|
79384
|
+
[class.warning]="!!previousValue"\r
|
|
79385
|
+
>\r
|
|
79386
|
+
@if (field.label) {\r
|
|
79387
|
+
<span\r
|
|
79388
|
+
class="filling-form-fields-item-label body-1-regular"\r
|
|
79389
|
+
[class.warning]="!!previousValue"\r
|
|
79390
|
+
>\r
|
|
79391
|
+
{{ (field.label | translate) + (field.required ? " *" : "") }}\r
|
|
79392
|
+
</span>\r
|
|
79393
|
+
}\r
|
|
79394
|
+
\r
|
|
79395
|
+
<mat-form-field appearance="outline">\r
|
|
79396
|
+
<input\r
|
|
79397
|
+
matInput\r
|
|
79398
|
+
[matDatepicker]="picker"\r
|
|
79399
|
+
[formControlName]="field.formControlName"\r
|
|
79400
|
+
(dateChange)="field.onChange && field.onChange(form)"\r
|
|
79401
|
+
/>\r
|
|
79402
|
+
<mat-datepicker-toggle matSuffix [for]="picker">\r
|
|
79403
|
+
<mat-icon matDatepickerToggleIcon>calendar_today</mat-icon>\r
|
|
79404
|
+
</mat-datepicker-toggle>\r
|
|
79405
|
+
<mat-datepicker #picker></mat-datepicker>\r
|
|
79406
|
+
\r
|
|
79407
|
+
@if (previousValue != null) {\r
|
|
79408
|
+
<mat-hint\r
|
|
79409
|
+
[class.warning]="true"\r
|
|
79410
|
+
class="filling-form-fields-item-hint"\r
|
|
79411
|
+
>\r
|
|
79412
|
+
{{ 'Previously saved value' | translate }}: {{ previousValue }}\r
|
|
79413
|
+
</mat-hint>\r
|
|
79414
|
+
}\r
|
|
79415
|
+
\r
|
|
79416
|
+
<mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>\r
|
|
79417
|
+
</mat-form-field>\r
|
|
79418
|
+
</div>\r
|
|
79419
|
+
}\r
|
|
79420
|
+
\r
|
|
79421
|
+
@case (types.Input) {\r
|
|
79422
|
+
<div\r
|
|
79423
|
+
[class.warning]="!!previousValue"\r
|
|
79424
|
+
class="filling-form-fields-item {{field.class ?? 'span-6'}}"\r
|
|
79425
|
+
>\r
|
|
79426
|
+
@if (field.label) {\r
|
|
79427
|
+
<span\r
|
|
79428
|
+
[class.warning]="!!previousValue"\r
|
|
79429
|
+
class="filling-form-fields-item-label body-1-regular"\r
|
|
79430
|
+
>\r
|
|
79431
|
+
{{ (field.label | translate) + (field.required ? " *" : "") }}\r
|
|
79432
|
+
</span>\r
|
|
79433
|
+
\r
|
|
79434
|
+
<mat-form-field appearance="outline">\r
|
|
79435
|
+
<input\r
|
|
79436
|
+
matInput\r
|
|
79437
|
+
[readonly]="field.readonly"\r
|
|
79438
|
+
[formControlName]="field.formControlName"\r
|
|
79439
|
+
(input)="field.onChange && field.onChange(form)"\r
|
|
79440
|
+
/>\r
|
|
79441
|
+
\r
|
|
79442
|
+
@if (previousValue != null) {\r
|
|
79443
|
+
<mat-hint\r
|
|
79444
|
+
[class.warning]="true"\r
|
|
79445
|
+
class="filling-form-fields-item-hint"\r
|
|
79446
|
+
>{{ 'Previously saved value' | translate }}: {{ previousValue }}</mat-hint\r
|
|
79447
|
+
>\r
|
|
79448
|
+
}\r
|
|
79449
|
+
\r
|
|
79450
|
+
@if (previousValue != null) {\r
|
|
79451
|
+
<mat-icon\r
|
|
79452
|
+
[class.warning]="true"\r
|
|
79453
|
+
class="filling-form-fields-item-icon"\r
|
|
79454
|
+
matSuffix\r
|
|
79455
|
+
>warning_amber</mat-icon\r
|
|
79456
|
+
>\r
|
|
79457
|
+
}\r
|
|
79458
|
+
\r
|
|
79459
|
+
<mat-error>{{ (field.label | translate) + ' ' + ('is required' | translate) }}</mat-error>\r
|
|
79460
|
+
</mat-form-field>\r
|
|
79461
|
+
}\r
|
|
79462
|
+
</div>\r
|
|
79463
|
+
}\r
|
|
79464
|
+
@case (types.TextArea) {\r
|
|
79465
|
+
<div class="filling-form-fields-item text-area {{field.class ?? 'span-6'}}">\r
|
|
79466
|
+
@if (field.label) {\r
|
|
79467
|
+
<span class="filling-form-fields-item-label body-1-regular">\r
|
|
79468
|
+
{{ (field.label | translate) + (field.required ? " *" : "") }}\r
|
|
79469
|
+
</span>\r
|
|
79470
|
+
\r
|
|
79471
|
+
<mat-form-field appearance="outline">\r
|
|
79472
|
+
<textarea\r
|
|
79473
|
+
matInput\r
|
|
79474
|
+
[readonly]="field.readonly"\r
|
|
79475
|
+
[formControlName]="field.formControlName"\r
|
|
79476
|
+
(change)="field.onChange && field.onChange(form)"\r
|
|
79477
|
+
></textarea>\r
|
|
79478
|
+
</mat-form-field>\r
|
|
79479
|
+
}\r
|
|
79480
|
+
</div>\r
|
|
79481
|
+
}\r
|
|
79482
|
+
@case (types.CheckboxList) {\r
|
|
79483
|
+
<checkbox-list class="{{field.class}}" [formControlName]="field.formControlName" [items]="field.options ?? []"/>\r
|
|
79484
|
+
}\r
|
|
79485
|
+
@case (types.Text) {\r
|
|
79486
|
+
@let label = field.dynamicLabel ? field.dynamicLabel(form, translateFn, prevData()) : field.label;\r
|
|
79487
|
+
@if (label) {\r
|
|
79488
|
+
<p [class.last]="last" class="filling-form-fields-item-text body-1-regular grey" [class]="field.class" [innerHTML]="label" ></p>\r
|
|
79489
|
+
}\r
|
|
79490
|
+
}\r
|
|
79491
|
+
}\r
|
|
79492
|
+
}\r
|
|
79493
|
+
}\r
|
|
79494
|
+
</div>\r
|
|
79495
|
+
</section>\r
|
|
79475
79496
|
`, styles: ['/* src/app/components/form/filing-form-group/filing-form-group.component.scss */\n:host {\n overflow: hidden;\n}\n:host .filling-form-fields {\n display: grid;\n grid-template-columns: repeat(12, 1fr);\n column-gap: 16px;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select {\n display: flex;\n}\n:host .filling-form-fields ::ng-deep .mdc-checkbox__background {\n border: 3px solid #6a6c6f;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-arrow-wrapper {\n display: none;\n}\n:host .filling-form-fields ::ng-deep .suffix-container {\n display: flex;\n align-items: center;\n padding-right: 12px;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-form-field-icon-suffix {\n display: flex;\n align-items: center;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-form-field-icon-suffix .mat-icon {\n display: flex;\n align-items: center;\n}\n:host .filling-form-fields ::ng-deep .arrow-icon {\n pointer-events: none;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-form-field-infix {\n display: flex !important;\n font-size: 14px !important;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value-text {\n font-size: 14px !important;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value {\n font-size: 14px !important;\n}\n:host .filling-form-fields ::ng-deep .mdc-label {\n font-size: 14px !important;\n}\n:host .filling-form-fields-checkbox {\n display: flex;\n flex-direction: column;\n justify-content: center;\n line-height: 2rem;\n}\n:host .filling-form-fields-checkbox:not(.last) {\n padding-bottom: 16px;\n}\n:host .filling-form-fields-checkbox-text {\n display: flex;\n align-items: center;\n gap: 8px;\n line-height: 20px;\n color: var(--filing-modal-color-grey);\n}\n:host .filling-form-fields-empty {\n width: 100%;\n height: 80px;\n}\n:host .filling-form-fields-item {\n --mat-sys-primary: #6b6f76;\n --mat-sys-primary-container: #e4e5e8;\n --mat-sys-surface-tint: #6b6f76;\n --mat-sys-outline: #c7c9cf;\n --mat-sys-outline-variant: #dfe1e6;\n --mdc-icon-button-state-layer-size: 36px;\n display: flex;\n flex-direction: column;\n gap: 4px;\n}\n:host .filling-form-fields-item.text-area ::ng-deep .mat-mdc-text-field-wrapper {\n padding: 0 !important;\n}\n:host .filling-form-fields-item.text-area ::ng-deep .mat-mdc-input-element {\n padding: 0 12px;\n min-height: 230px !important;\n max-height: 230px !important;\n}\n:host .filling-form-fields-item-text {\n font-size: 14px !important;\n}\n:host .filling-form-fields-item-text:not(.last) {\n padding-bottom: 16px;\n}\n:host .filling-form-fields-item-hint {\n display: flex;\n align-items: center;\n font-size: 12px;\n}\n:host .filling-form-fields-item.warning {\n --mdc-outlined-text-field-outline-color: #845400;\n --mdc-outlined-text-field-outline-width: 2px;\n --mat-sys-on-surface: #845400;\n color: #845400;\n padding-bottom: 16px;\n}\n:host .filling-form-fields-item-label {\n color: var(--filing-modal-color-grey);\n}\n:host .filling-form-fields-item-label.warning {\n color: #845400;\n}\n:host .filling-form-fields-item-hint.warning {\n color: #845400;\n}\n:host .filling-form-fields-item-icon {\n font-size: 22px;\n line-height: 22px;\n height: 22px;\n width: 22px;\n}\n:host .filling-form-fields-item-icon.warning {\n color: #845400;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid {\n padding: 0 0 12px;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mdc-notched-outline__leading {\n border-color: #ff3e3e !important;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mdc-notched-outline__trailing {\n border-color: #E22222 !important;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-datepicker-toggle-default-icon {\n color: #E22222 !important;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-mdc-form-field-error-wrapper {\n padding: 0;\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-mdc-form-field-error {\n color: #E22222 !important;\n font-size: 12px;\n font-family: "Open Sans";\n}\n:host .filling-form-fields.submitted ::ng-deep .mat-form-field-invalid .mat-mdc-select-arrow {\n color: #E22222 !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-icon {\n color: #4a4a4a !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mdc-notched-outline__leading {\n border-color: #d6d6d6 !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mdc-notched-outline__trailing {\n border-color: #d6d6d6 !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-datepicker-toggle-default-icon {\n color: #4a4a4a !important;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-mdc-form-field-error {\n display: none;\n}\n:host .filling-form-fields:not(.submitted) ::ng-deep .mat-mdc-select-arrow {\n color: #d6d6d6 !important;\n}\n:host .filling-form-fields ::ng-deep {\n --mat-form-field-container-vertical-padding: 6px;\n --mat-form-field-container-height: 36px;\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value {\n line-height: 18px;\n}\n:host .filling-form-fields ::ng-deep input,\n:host .filling-form-fields ::ng-deep textarea {\n font-family: "Open Sans";\n}\n:host .filling-form-fields ::ng-deep .mat-mdc-select-value-text {\n font-family: "Open Sans";\n}\n:host .filling-form-fields ::ng-deep .mdc-text-field--disabled {\n background-color: #F5F5F5 !important;\n}\n:host .filling-form-fields ::ng-deep .mdc-notched-outline__leading {\n border-width: 1px !important;\n border-color: #d6d6d6 !important;\n border-top-left-radius: 8px;\n border-bottom-left-radius: 8px;\n}\n:host .filling-form-fields ::ng-deep .mdc-notched-outline__trailing {\n border-width: 1px !important;\n border-color: #d6d6d6 !important;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n}\n:host .filling-form-fields ::ng-deep .mdc-icon-button .mat-icon {\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n}\n:host .span-1 {\n grid-column: span 1;\n}\n:host .span-2 {\n grid-column: span 2;\n}\n:host .span-3 {\n grid-column: span 3;\n}\n:host .span-4 {\n grid-column: span 4;\n}\n:host .span-5 {\n grid-column: span 5;\n}\n:host .span-6 {\n grid-column: span 6;\n}\n:host .span-8 {\n grid-column: span 8;\n}\n:host .span-12 {\n grid-column: span 12;\n}\n:host .column-1 {\n grid-column: 1/span 2;\n}\n:host .column-2 {\n grid-column: 1/span 4;\n}\n:host .column-3 {\n grid-column: 1/span 6;\n}\n:host ::ng-deep input {\n font-size: 14px !important;\n color: var(--filing-modal-color-grey) !important;\n}\n.filing-form-group-select-option {\n background: white !important;\n}\n.filing-form-group-select-option ::ng-deep .mat-pseudo-checkbox-checked {\n background: transparent !important;\n}\n.filing-form-group-select-option ::ng-deep .mdc-list-item__primary-text {\n font-family: "Open Sans";\n font-size: 14px !important;\n}\n/*# sourceMappingURL=filing-form-group.component.css.map */\n'] }]
|
|
79476
79497
|
}], () => [], null);
|
|
79477
79498
|
})();
|
|
@@ -79731,70 +79752,70 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
79731
79752
|
FilingFormGroupComponent,
|
|
79732
79753
|
TranslatePipe,
|
|
79733
79754
|
MatButton
|
|
79734
|
-
], template: `<div class="terms-and-conditions"
|
|
79735
|
-
<div class="terms-and-conditions-content"
|
|
79736
|
-
<expandable-card class="terms-and-conditions-card" title="Terms and Conditions"
|
|
79737
|
-
|
|
79738
|
-
<div class="terms-and-conditions-card-content"
|
|
79739
|
-
<div class="terms-and-conditions-text-wrapper"
|
|
79740
|
-
<div class="terms-and-conditions-text"
|
|
79741
|
-
<span class="body-1-regular">{{ 'TERMS.intro' | translate }}</span
|
|
79742
|
-
<span class="body-1-regular">{{ 'TERMS.agreement_mandatory' | translate }}</span
|
|
79743
|
-
<span class="body-1-regular">{{ 'TERMS.clause_i' | translate }}</span
|
|
79744
|
-
<span class="body-1-regular">{{ 'TERMS.clause_ii' | translate }}</span
|
|
79745
|
-
<span class="body-1-regular">{{ 'TERMS.authority' | translate }}</span
|
|
79746
|
-
<span class="body-1-regular">{{ 'TERMS.bound' | translate }}</span
|
|
79747
|
-
<span class="body-1-regular">{{ 'TERMS.section_1' | translate }}</span
|
|
79748
|
-
<span class="body-1-regular">{{ 'TERMS.section_2' | translate }}</span
|
|
79749
|
-
<span class="body-1-regular">{{ 'TERMS.section_3' | translate }}</span
|
|
79750
|
-
<span class="body-1-regular">{{ 'TERMS.section_4' | translate }}</span
|
|
79751
|
-
<span class="body-1-regular">{{ 'TERMS.section_5' | translate }}</span
|
|
79752
|
-
<span class="body-1-regular">{{ 'TERMS.section_6' | translate }}</span
|
|
79753
|
-
<span class="body-1-regular">{{ 'TERMS.section_7' | translate }}</span
|
|
79754
|
-
<span class="body-1-regular">{{ 'TERMS.section_8' | translate }}</span
|
|
79755
|
-
<span class="body-1-regular">{{ 'TERMS.section_9' | translate }}</span
|
|
79756
|
-
<span class="body-1-regular">{{ 'TERMS.section_10' | translate }}</span
|
|
79757
|
-
<span class="body-1-regular">{{ 'TERMS.section_11' | translate }}</span
|
|
79758
|
-
<span class="body-1-regular">{{ 'TERMS.section_12' | translate }}</span
|
|
79759
|
-
<span class="body-1-regular">{{ 'TERMS.section_13' | translate }}</span
|
|
79760
|
-
<span class="body-1-regular">{{ 'TERMS.section_14' | translate }}</span
|
|
79761
|
-
<span class="body-1-regular">{{ 'TERMS.section_15' | translate }}</span
|
|
79762
|
-
<span class="body-1-regular">{{ 'TERMS.section_16' | translate }}</span
|
|
79763
|
-
<span class="body-1-regular">{{ 'TERMS.section_17' | translate }}</span
|
|
79764
|
-
</div
|
|
79765
|
-
</div
|
|
79766
|
-
|
|
79767
|
-
<mat-checkbox [formControl]="getFormControl(termsAndConditionsControls.AcceptTerms)"
|
|
79768
|
-
<div class="body-1-regular black"
|
|
79769
|
-
<span>{{ 'I agree to the Terms and Conditions and confirm that all required person(s) and/or entities agree to them' | translate }}</span
|
|
79770
|
-
</div
|
|
79771
|
-
</mat-checkbox
|
|
79772
|
-
</div
|
|
79773
|
-
|
|
79774
|
-
</expandable-card
|
|
79775
|
-
|
|
79776
|
-
<expandable-card title="Signatory"
|
|
79777
|
-
<filing-form-group [isSubmitted]="true" [form]="form" [config]="termsAndConditionsFields"
|
|
79778
|
-
</expandable-card
|
|
79779
|
-
</div
|
|
79780
|
-
|
|
79781
|
-
<div class="terms-and-conditions-form-actions"
|
|
79782
|
-
<button mat-stroked-button mat-button (click)="close.emit()"
|
|
79783
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
79784
|
-
</button
|
|
79785
|
-
|
|
79786
|
-
<button mat-stroked-button mat-button (click)="prev.emit()"><span class="body-1-semibold">{{ 'Back' | translate }}</span></button
|
|
79787
|
-
|
|
79788
|
-
<button
|
|
79789
|
-
mat-flat-button
|
|
79790
|
-
type="submit"
|
|
79791
|
-
(click)="onConfirm()"
|
|
79792
|
-
[disabled]="form.invalid"
|
|
79793
|
-
|
|
79794
|
-
<span class="body-1-semibold">{{ 'Proceed' | translate }}</span
|
|
79795
|
-
</button
|
|
79796
|
-
</div
|
|
79797
|
-
</div
|
|
79755
|
+
], template: `<div class="terms-and-conditions">\r
|
|
79756
|
+
<div class="terms-and-conditions-content">\r
|
|
79757
|
+
<expandable-card class="terms-and-conditions-card" title="Terms and Conditions">\r
|
|
79758
|
+
\r
|
|
79759
|
+
<div class="terms-and-conditions-card-content">\r
|
|
79760
|
+
<div class="terms-and-conditions-text-wrapper">\r
|
|
79761
|
+
<div class="terms-and-conditions-text">\r
|
|
79762
|
+
<span class="body-1-regular">{{ 'TERMS.intro' | translate }}</span>\r
|
|
79763
|
+
<span class="body-1-regular">{{ 'TERMS.agreement_mandatory' | translate }}</span>\r
|
|
79764
|
+
<span class="body-1-regular">{{ 'TERMS.clause_i' | translate }}</span>\r
|
|
79765
|
+
<span class="body-1-regular">{{ 'TERMS.clause_ii' | translate }}</span>\r
|
|
79766
|
+
<span class="body-1-regular">{{ 'TERMS.authority' | translate }}</span>\r
|
|
79767
|
+
<span class="body-1-regular">{{ 'TERMS.bound' | translate }}</span>\r
|
|
79768
|
+
<span class="body-1-regular">{{ 'TERMS.section_1' | translate }}</span>\r
|
|
79769
|
+
<span class="body-1-regular">{{ 'TERMS.section_2' | translate }}</span>\r
|
|
79770
|
+
<span class="body-1-regular">{{ 'TERMS.section_3' | translate }}</span>\r
|
|
79771
|
+
<span class="body-1-regular">{{ 'TERMS.section_4' | translate }}</span>\r
|
|
79772
|
+
<span class="body-1-regular">{{ 'TERMS.section_5' | translate }}</span>\r
|
|
79773
|
+
<span class="body-1-regular">{{ 'TERMS.section_6' | translate }}</span>\r
|
|
79774
|
+
<span class="body-1-regular">{{ 'TERMS.section_7' | translate }}</span>\r
|
|
79775
|
+
<span class="body-1-regular">{{ 'TERMS.section_8' | translate }}</span>\r
|
|
79776
|
+
<span class="body-1-regular">{{ 'TERMS.section_9' | translate }}</span>\r
|
|
79777
|
+
<span class="body-1-regular">{{ 'TERMS.section_10' | translate }}</span>\r
|
|
79778
|
+
<span class="body-1-regular">{{ 'TERMS.section_11' | translate }}</span>\r
|
|
79779
|
+
<span class="body-1-regular">{{ 'TERMS.section_12' | translate }}</span>\r
|
|
79780
|
+
<span class="body-1-regular">{{ 'TERMS.section_13' | translate }}</span>\r
|
|
79781
|
+
<span class="body-1-regular">{{ 'TERMS.section_14' | translate }}</span>\r
|
|
79782
|
+
<span class="body-1-regular">{{ 'TERMS.section_15' | translate }}</span>\r
|
|
79783
|
+
<span class="body-1-regular">{{ 'TERMS.section_16' | translate }}</span>\r
|
|
79784
|
+
<span class="body-1-regular">{{ 'TERMS.section_17' | translate }}</span>\r
|
|
79785
|
+
</div>\r
|
|
79786
|
+
</div>\r
|
|
79787
|
+
\r
|
|
79788
|
+
<mat-checkbox [formControl]="getFormControl(termsAndConditionsControls.AcceptTerms)">\r
|
|
79789
|
+
<div class="body-1-regular black">\r
|
|
79790
|
+
<span>{{ 'I agree to the Terms and Conditions and confirm that all required person(s) and/or entities agree to them' | translate }}</span>\r
|
|
79791
|
+
</div>\r
|
|
79792
|
+
</mat-checkbox>\r
|
|
79793
|
+
</div>\r
|
|
79794
|
+
\r
|
|
79795
|
+
</expandable-card>\r
|
|
79796
|
+
\r
|
|
79797
|
+
<expandable-card title="Signatory">\r
|
|
79798
|
+
<filing-form-group [isSubmitted]="true" [form]="form" [config]="termsAndConditionsFields"/>\r
|
|
79799
|
+
</expandable-card>\r
|
|
79800
|
+
</div>\r
|
|
79801
|
+
\r
|
|
79802
|
+
<div class="terms-and-conditions-form-actions">\r
|
|
79803
|
+
<button mat-stroked-button mat-button (click)="close.emit()">\r
|
|
79804
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
79805
|
+
</button>\r
|
|
79806
|
+
\r
|
|
79807
|
+
<button mat-stroked-button mat-button (click)="prev.emit()"><span class="body-1-semibold">{{ 'Back' | translate }}</span></button>\r
|
|
79808
|
+
\r
|
|
79809
|
+
<button\r
|
|
79810
|
+
mat-flat-button\r
|
|
79811
|
+
type="submit"\r
|
|
79812
|
+
(click)="onConfirm()"\r
|
|
79813
|
+
[disabled]="form.invalid"\r
|
|
79814
|
+
>\r
|
|
79815
|
+
<span class="body-1-semibold">{{ 'Proceed' | translate }}</span>\r
|
|
79816
|
+
</button>\r
|
|
79817
|
+
</div>\r
|
|
79818
|
+
</div>\r
|
|
79798
79819
|
`, styles: ["/* src/app/components/terms-and-conditions/terms-and-conditions.component.scss */\n:host .terms-and-conditions {\n --mdc-outlined-text-field-outline-color: #e8e8e8;\n --mat-form-field-filled-with-label-container-padding-top: 12px;\n --mat-form-field-filled-with-label-container-padding-bottom: 2px;\n --mat-form-field-container-height: 36px;\n --mdc-filled-text-field-container-color: transparent;\n height: 100%;\n color: #8c8e90;\n}\n:host .terms-and-conditions ::ng-deep .mdc-label {\n font-size: 14px !important;\n}\n:host .terms-and-conditions-card-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: calc(100% - 25px);\n}\n:host .terms-and-conditions-text-wrapper {\n border: 1px solid #A1B5C7;\n border-radius: 8px;\n overflow: hidden;\n}\n:host .terms-and-conditions-text {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n overflow: auto;\n max-height: 420px;\n padding: 8px;\n color: var(--filing-modal-color-grey);\n}\n:host .terms-and-conditions-form {\n height: 100%;\n padding-top: 16px;\n display: flex;\n flex-direction: column;\n gap: 12px;\n}\n:host .terms-and-conditions-form-title {\n color: black;\n margin: 0;\n}\n:host .terms-and-conditions-form-input {\n width: 100%;\n}\n:host .terms-and-conditions-form-input::ng-deep .mdc-text-field,\n:host .terms-and-conditions-form-input::ng-deep .mat-mdc-form-field-error-wrapper {\n padding: 0;\n}\n:host .terms-and-conditions-form-container {\n display: flex;\n gap: 16px;\n}\n:host .terms-and-conditions-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .terms-and-conditions-form-actions button {\n margin: 0;\n}\n:host .terms-and-conditions-content {\n height: calc(100% - 67px);\n overflow: auto;\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n/*# sourceMappingURL=terms-and-conditions.component.css.map */\n"] }]
|
|
79799
79820
|
}], null, null);
|
|
79800
79821
|
})();
|
|
@@ -80074,83 +80095,83 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80074
80095
|
animate("100ms cubic-bezier(0.4, 0.0, 0.2, 1)")
|
|
80075
80096
|
])
|
|
80076
80097
|
])
|
|
80077
|
-
], template: `<div class="expandable-card"
|
|
80078
|
-
<div
|
|
80079
|
-
[class.expanded]="isExpanded()"
|
|
80080
|
-
(click)="toggle()"
|
|
80081
|
-
class="expandable-card-header"
|
|
80082
|
-
|
|
80083
|
-
<h2 class="expandable-card-header-title">{{ title() | translate }}</h2
|
|
80084
|
-
|
|
80085
|
-
<div class="expandable-card-header-container"
|
|
80086
|
-
@if (isStatusIcon()) {
|
|
80087
|
-
@if (!isValid()) {
|
|
80088
|
-
<mat-icon class="expandable-card-header-status-icon"
|
|
80089
|
-
error_outline
|
|
80090
|
-
</mat-icon
|
|
80091
|
-
}
|
|
80092
|
-
}
|
|
80093
|
-
|
|
80094
|
-
<mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon
|
|
80095
|
-
</div
|
|
80096
|
-
</div
|
|
80097
|
-
|
|
80098
|
-
<div class="expandable-card-content" [@expandCollapse]="isExpanded()"
|
|
80099
|
-
<ng-content select="[slot='header-content']"></ng-content
|
|
80100
|
-
<div class="expandable-card-actions"
|
|
80101
|
-
<div
|
|
80102
|
-
<ng-content select="[slot='subtitle']"></ng-content
|
|
80103
|
-
</div
|
|
80104
|
-
|
|
80105
|
-
@if (controlsCount() !== 0) {
|
|
80106
|
-
<div class="expandable-card-actions-items"
|
|
80107
|
-
<h3 class="expandable-card-actions-item" (click)="expandAll()"
|
|
80108
|
-
{{ "Expand all" | translate }}
|
|
80109
|
-
</h3
|
|
80110
|
-
<h3 class="expandable-card-actions-separator">|</h3
|
|
80111
|
-
<h3 class="expandable-card-actions-item" (click)="collapseAll()"
|
|
80112
|
-
{{ "Collapse all" | translate }}
|
|
80113
|
-
</h3
|
|
80114
|
-
</div
|
|
80115
|
-
}
|
|
80116
|
-
</div
|
|
80117
|
-
|
|
80118
|
-
@for (formGroup of formArray().controls; let i = $index; track formGroup) {
|
|
80119
|
-
<div class="expandable-card-separator"
|
|
80120
|
-
<div class="expandable-card-separator-line"></div
|
|
80121
|
-
</div
|
|
80122
|
-
|
|
80123
|
-
<expandable-card
|
|
80124
|
-
[isListItem]="true"
|
|
80125
|
-
[title]="getFormGroup(i).get(labelKey())?.value"
|
|
80126
|
-
[role]="getFormGroup(i).get(roleKey())?.value"
|
|
80127
|
-
[isStatusIcon]="isStatusIcon()"
|
|
80128
|
-
[isValid]="getFormGroupValid(i)"
|
|
80129
|
-
[isOpen]="isItemExpanded(i)"
|
|
80130
|
-
[border]="false"
|
|
80131
|
-
[padded]="false"
|
|
80132
|
-
[chipType]="
|
|
80133
|
-
affiliationTypeToChipType(
|
|
80134
|
-
formGroup.get(controls.AffiliationType)?.value
|
|
80135
|
-
)
|
|
80136
|
-
"
|
|
80137
|
-
[removable]="removable()"
|
|
80138
|
-
(toggled)="toggleItem(i)"
|
|
80139
|
-
(remove)="remove.emit(i)"
|
|
80140
|
-
|
|
80141
|
-
@let form = getFormGroup(i)
|
|
80142
|
-
@let configValue
|
|
80143
|
-
fields() ?? config()?.[form.get(configKey())?.value] ?? []
|
|
80144
|
-
<filing-form-group
|
|
80145
|
-
[prevData]="prevData()"
|
|
80146
|
-
[isSubmitted]="isSubmitted()"
|
|
80147
|
-
[form]="form"
|
|
80148
|
-
[config]="configValue"
|
|
80149
|
-
|
|
80150
|
-
</expandable-card
|
|
80151
|
-
}
|
|
80152
|
-
</div
|
|
80153
|
-
</div
|
|
80098
|
+
], template: `<div class="expandable-card">\r
|
|
80099
|
+
<div\r
|
|
80100
|
+
[class.expanded]="isExpanded()"\r
|
|
80101
|
+
(click)="toggle()"\r
|
|
80102
|
+
class="expandable-card-header"\r
|
|
80103
|
+
>\r
|
|
80104
|
+
<h2 class="expandable-card-header-title">{{ title() | translate }}</h2>\r
|
|
80105
|
+
\r
|
|
80106
|
+
<div class="expandable-card-header-container">\r
|
|
80107
|
+
@if (isStatusIcon()) {\r
|
|
80108
|
+
@if (!isValid()) {\r
|
|
80109
|
+
<mat-icon class="expandable-card-header-status-icon">\r
|
|
80110
|
+
error_outline\r
|
|
80111
|
+
</mat-icon>\r
|
|
80112
|
+
}\r
|
|
80113
|
+
}\r
|
|
80114
|
+
\r
|
|
80115
|
+
<mat-icon [class.rotated]="!isExpanded()">arrow_forward_ios</mat-icon>\r
|
|
80116
|
+
</div>\r
|
|
80117
|
+
</div>\r
|
|
80118
|
+
\r
|
|
80119
|
+
<div class="expandable-card-content" [@expandCollapse]="isExpanded()">\r
|
|
80120
|
+
<ng-content select="[slot='header-content']"></ng-content>\r
|
|
80121
|
+
<div class="expandable-card-actions">\r
|
|
80122
|
+
<div>\r
|
|
80123
|
+
<ng-content select="[slot='subtitle']"></ng-content>\r
|
|
80124
|
+
</div>\r
|
|
80125
|
+
\r
|
|
80126
|
+
@if (controlsCount() !== 0) {\r
|
|
80127
|
+
<div class="expandable-card-actions-items">\r
|
|
80128
|
+
<h3 class="expandable-card-actions-item" (click)="expandAll()">\r
|
|
80129
|
+
{{ "Expand all" | translate }}\r
|
|
80130
|
+
</h3>\r
|
|
80131
|
+
<h3 class="expandable-card-actions-separator">|</h3>\r
|
|
80132
|
+
<h3 class="expandable-card-actions-item" (click)="collapseAll()">\r
|
|
80133
|
+
{{ "Collapse all" | translate }}\r
|
|
80134
|
+
</h3>\r
|
|
80135
|
+
</div>\r
|
|
80136
|
+
}\r
|
|
80137
|
+
</div>\r
|
|
80138
|
+
\r
|
|
80139
|
+
@for (formGroup of formArray().controls; let i = $index; track formGroup) {\r
|
|
80140
|
+
<div class="expandable-card-separator">\r
|
|
80141
|
+
<div class="expandable-card-separator-line"></div>\r
|
|
80142
|
+
</div>\r
|
|
80143
|
+
\r
|
|
80144
|
+
<expandable-card\r
|
|
80145
|
+
[isListItem]="true"\r
|
|
80146
|
+
[title]="getFormGroup(i).get(labelKey())?.value"\r
|
|
80147
|
+
[role]="getFormGroup(i).get(roleKey())?.value"\r
|
|
80148
|
+
[isStatusIcon]="isStatusIcon()"\r
|
|
80149
|
+
[isValid]="getFormGroupValid(i)"\r
|
|
80150
|
+
[isOpen]="isItemExpanded(i)"\r
|
|
80151
|
+
[border]="false"\r
|
|
80152
|
+
[padded]="false"\r
|
|
80153
|
+
[chipType]="\r
|
|
80154
|
+
affiliationTypeToChipType(\r
|
|
80155
|
+
formGroup.get(controls.AffiliationType)?.value\r
|
|
80156
|
+
)\r
|
|
80157
|
+
"\r
|
|
80158
|
+
[removable]="removable()"\r
|
|
80159
|
+
(toggled)="toggleItem(i)"\r
|
|
80160
|
+
(remove)="remove.emit(i)"\r
|
|
80161
|
+
>\r
|
|
80162
|
+
@let form = getFormGroup(i);\r
|
|
80163
|
+
@let configValue =\r
|
|
80164
|
+
fields() ?? config()?.[form.get(configKey())?.value] ?? [];\r
|
|
80165
|
+
<filing-form-group\r
|
|
80166
|
+
[prevData]="prevData()"\r
|
|
80167
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80168
|
+
[form]="form"\r
|
|
80169
|
+
[config]="configValue"\r
|
|
80170
|
+
/>\r
|
|
80171
|
+
</expandable-card>\r
|
|
80172
|
+
}\r
|
|
80173
|
+
</div>\r
|
|
80174
|
+
</div>\r
|
|
80154
80175
|
`, styles: ["/* src/app/components/expandable-list-card/expandable-list-card.component.scss */\n:host .expandable-card {\n padding: 16px 0;\n box-shadow:\n 0 1px 2px rgba(0, 0, 0, 0.08),\n 0 2px 4px rgba(0, 0, 0, 0.12),\n 0 0 0 1px rgba(0, 0, 0, 0.04);\n border-radius: 8px;\n margin: 1px;\n}\n:host .expandable-card-header {\n padding: 0 16px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n transition: padding-bottom ease-in-out 250ms;\n}\n:host .expandable-card-header.expanded {\n padding-bottom: 16px;\n}\n:host .expandable-card-header-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n:host .expandable-card-header-title {\n color: #666666;\n font-weight: 700;\n font-size: 14px;\n}\n:host .expandable-card-header-container {\n display: flex;\n align-items: center;\n gap: 16px;\n}\n:host .expandable-card-header-status-icon {\n font-weight: 400;\n color: #F1D01E;\n font-size: 22px;\n height: 22px;\n width: 22px;\n}\n:host .expandable-card-header-status-icon.added {\n color: #44aa00;\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon) {\n display: flex;\n align-items: center;\n justify-content: center;\n transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1);\n transform: rotate(-90deg);\n}\n:host .expandable-card-header mat-icon:not(.expandable-card-header-status-icon).rotated {\n transform: rotate(90deg);\n}\n:host .expandable-card-actions {\n padding: 0 16px 0 16px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .expandable-card-actions-items {\n display: flex;\n align-items: center;\n gap: 4px;\n font-size: 14px;\n}\n:host .expandable-card-actions-separator {\n padding: 0 2px;\n color: var(--filing-modal-color-grey);\n font-size: 14px;\n}\n:host .expandable-card-actions-item {\n color: var(--filing-modal-color-light-blue);\n cursor: pointer;\n font-size: 14px;\n}\n:host .expandable-card-actions-item:hover {\n text-decoration: underline;\n}\n:host .expandable-card expandable-card {\n display: block;\n padding: 0 16px;\n}\n:host .expandable-card-separator {\n width: 100%;\n padding: 18px 16px;\n}\n:host .expandable-card-separator-line {\n background-color: var(--filing-modal-color-grey-mid);\n height: 1px;\n width: 100%;\n}\n/*# sourceMappingURL=expandable-list-card.component.css.map */\n"] }]
|
|
80155
80176
|
}], () => [], null);
|
|
80156
80177
|
})();
|
|
@@ -80269,7 +80290,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80269
80290
|
(() => {
|
|
80270
80291
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(AlertComponent, [{
|
|
80271
80292
|
type: Component,
|
|
80272
|
-
args: [{ selector: "alert", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="alert {{type()}}">\n @switch (type()) {\n @case (alertType.Warning) {\n <mat-icon class="alert-icon">warning</mat-icon>\n\n }\n @case (alertType.Info) {\n <mat-icon class="alert-icon">info_outlined</mat-icon>\n }\n }\n <div class="alert-text">\n <span class="alert-text-title">{{title() | translate}}</span>\n\n @if (isArray()) {\n <ul class="alert-options">\n @for(option of content(); track option) {\n <li>{{option}}</li>\n }\n </ul>\n }@else {\n <span>{{$any(content()) | translate}}</span>\n }\n </div>\n\n</div>\n', styles: ["/* src/app/components/alert/alert.component.scss */\n:host .alert {\n display: flex;\n align-items: center;\n padding: 12px 10px;\n border-radius: 12px;\n gap: 8px;\n border: 1px solid var(--filing-modal-color-grey);\n}\n:host .alert.warning {\n border: 1px solid #F1D01E;\n}\n:host .alert.warning .alert-icon {\n color: #F1D01E;\n font-size: 20px;\n}\n:host .alert-text {\n display: flex;\n flex-direction: column;\n gap: 12px;\n color: var(--filing-modal-color-grey);\n font-size: 14px;\n}\n:host .alert-text-title {\n font-weight: 600;\n}\n:host .alert-options {\n margin: 0;\n padding: 0 24px;\n}\n/*# sourceMappingURL=alert.component.css.map */\n"] }]
|
|
80293
|
+
args: [{ selector: "alert", changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, TranslatePipe], template: '<div class="alert {{type()}}">\r\n @switch (type()) {\r\n @case (alertType.Warning) {\r\n <mat-icon class="alert-icon">warning</mat-icon>\r\n\r\n }\r\n @case (alertType.Info) {\r\n <mat-icon class="alert-icon">info_outlined</mat-icon>\r\n }\r\n }\r\n <div class="alert-text">\r\n <span class="alert-text-title">{{title() | translate}}</span>\r\n\r\n @if (isArray()) {\r\n <ul class="alert-options">\r\n @for(option of content(); track option) {\r\n <li>{{option}}</li>\r\n }\r\n </ul>\r\n }@else {\r\n <span>{{$any(content()) | translate}}</span>\r\n }\r\n </div>\r\n\r\n</div>\r\n', styles: ["/* src/app/components/alert/alert.component.scss */\n:host .alert {\n display: flex;\n align-items: center;\n padding: 12px 10px;\n border-radius: 12px;\n gap: 8px;\n border: 1px solid var(--filing-modal-color-grey);\n}\n:host .alert.warning {\n border: 1px solid #F1D01E;\n}\n:host .alert.warning .alert-icon {\n color: #F1D01E;\n font-size: 20px;\n}\n:host .alert-text {\n display: flex;\n flex-direction: column;\n gap: 12px;\n color: var(--filing-modal-color-grey);\n font-size: 14px;\n}\n:host .alert-text-title {\n font-weight: 600;\n}\n:host .alert-options {\n margin: 0;\n padding: 0 24px;\n}\n/*# sourceMappingURL=alert.component.css.map */\n"] }]
|
|
80273
80294
|
}], null, null);
|
|
80274
80295
|
})();
|
|
80275
80296
|
(() => {
|
|
@@ -80647,183 +80668,183 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80647
80668
|
ExpandableListCardComponent,
|
|
80648
80669
|
AlertComponent,
|
|
80649
80670
|
TranslatePipe
|
|
80650
|
-
], template: `<div class="incorporation-form"
|
|
80651
|
-
@if (isNote()) {
|
|
80652
|
-
<alert
|
|
80653
|
-
[type]="alertType.Info"
|
|
80654
|
-
title="Entity changed"
|
|
80655
|
-
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
|
|
80656
|
-
|
|
80657
|
-
}
|
|
80658
|
-
|
|
80659
|
-
@if (errors().length) {
|
|
80660
|
-
<alert
|
|
80661
|
-
title="The following issues need to be resolved before proceeding:"
|
|
80662
|
-
[content]="errors()"
|
|
80663
|
-
|
|
80664
|
-
}
|
|
80665
|
-
|
|
80666
|
-
<div class="incorporation-form-content"
|
|
80667
|
-
@let referenceNumbers = getFormGroup(groups.ReferenceNumbers)
|
|
80668
|
-
|
|
80669
|
-
@if (referenceNumbers) {
|
|
80670
|
-
<expandable-card [title]="groups.ReferenceNumbers"
|
|
80671
|
-
<div class="incorporation-form-item"
|
|
80672
|
-
<filing-form-group
|
|
80673
|
-
[isSubmitted]="isSubmitted()"
|
|
80674
|
-
[form]="referenceNumbers"
|
|
80675
|
-
[config]="referenceNumbersFields"
|
|
80676
|
-
(visiblyValidChange)="onSectionValidChange('refNumbers', $event)"
|
|
80677
|
-
|
|
80678
|
-
</div
|
|
80679
|
-
</expandable-card
|
|
80680
|
-
}
|
|
80681
|
-
|
|
80682
|
-
@let corporationDetails = getFormGroup(groups.CorporationDetails)
|
|
80683
|
-
|
|
80684
|
-
@if (corporationDetails) {
|
|
80685
|
-
<expandable-card
|
|
80686
|
-
[isValid]="sectionValidity['corpDetails']"
|
|
80687
|
-
[isStatusIcon]="statusIcon()"
|
|
80688
|
-
[title]="groups.CorporationDetails"
|
|
80689
|
-
|
|
80690
|
-
<div class="incorporation-form-item"
|
|
80691
|
-
<filing-form-group
|
|
80692
|
-
[isSubmitted]="isSubmitted()"
|
|
80693
|
-
[form]="corporationDetails"
|
|
80694
|
-
[config]="corporationDetailsCardFields"
|
|
80695
|
-
(visiblyValidChange)="onSectionValidChange('corpDetails', $event)"
|
|
80696
|
-
|
|
80697
|
-
</div
|
|
80698
|
-
</expandable-card
|
|
80699
|
-
}
|
|
80700
|
-
|
|
80701
|
-
@if (isLegalOpinion) {
|
|
80702
|
-
@let legalOpinion = getFormGroup(groups.LegalOpinion)
|
|
80703
|
-
|
|
80704
|
-
@if (legalOpinion) {
|
|
80705
|
-
<expandable-card
|
|
80706
|
-
[isValid]="
|
|
80707
|
-
sectionValidity['legalOpinionLawyer']
|
|
80708
|
-
sectionValidity['legalOpinionAddress']
|
|
80709
|
-
"
|
|
80710
|
-
[isStatusIcon]="statusIcon()"
|
|
80711
|
-
[title]="groups.LegalOpinion"
|
|
80712
|
-
|
|
80713
|
-
<filing-form-group
|
|
80714
|
-
[isSubmitted]="isSubmitted()"
|
|
80715
|
-
[form]="legalOpinion"
|
|
80716
|
-
[config]="legalOpinionLawyerFields()"
|
|
80717
|
-
(visiblyValidChange)="
|
|
80718
|
-
onSectionValidChange('legalOpinionLawyer', $event)
|
|
80719
|
-
"
|
|
80720
|
-
|
|
80721
|
-
|
|
80722
|
-
@if (legalOpinion.get(controls.LawyerSigningOpinion)?.value) {
|
|
80723
|
-
<filing-form-group
|
|
80724
|
-
[isSubmitted]="isSubmitted()"
|
|
80725
|
-
[form]="legalOpinion"
|
|
80726
|
-
[config]="legalOpinionConfirmAddressFieldsMap[legalOpinion.get(controls.AffiliationAddressType)?.value]"
|
|
80727
|
-
(visiblyValidChange)="
|
|
80728
|
-
onSectionValidChange('legalOpinionAddress', $event)
|
|
80729
|
-
"
|
|
80730
|
-
|
|
80731
|
-
}
|
|
80732
|
-
|
|
80733
|
-
</expandable-card
|
|
80734
|
-
}
|
|
80735
|
-
}
|
|
80736
|
-
|
|
80737
|
-
@let registeredOfficeForm = getFormGroup(groups.RegisteredOfficeAddress)
|
|
80738
|
-
|
|
80739
|
-
@if (registeredOfficeForm) {
|
|
80740
|
-
<expandable-card
|
|
80741
|
-
[isValid]="sectionValidity['registeredOffice']"
|
|
80742
|
-
[isStatusIcon]="statusIcon()"
|
|
80743
|
-
[title]="groups.RegisteredOfficeAddress"
|
|
80744
|
-
|
|
80745
|
-
<filing-form-group
|
|
80746
|
-
[isSubmitted]="isSubmitted()"
|
|
80747
|
-
[form]="registeredOfficeForm"
|
|
80748
|
-
[config]="
|
|
80749
|
-
affiliationCardFieldsMap[
|
|
80750
|
-
registeredOfficeForm.get(
|
|
80751
|
-
formationFormControls.AffiliationAddressType
|
|
80752
|
-
)?.value
|
|
80753
|
-
]
|
|
80754
|
-
"
|
|
80755
|
-
(visiblyValidChange)="
|
|
80756
|
-
onSectionValidChange('registeredOffice', $event)
|
|
80757
|
-
"
|
|
80758
|
-
|
|
80759
|
-
</expandable-card
|
|
80760
|
-
}
|
|
80761
|
-
|
|
80762
|
-
@let incorporatorsArray = getFormArray(groups.Incorporators)
|
|
80763
|
-
@let directorsArray = getFormArray(groups.Directors)
|
|
80764
|
-
|
|
80765
|
-
@let isOpenDirectors
|
|
80766
|
-
(directorsArray?.length ?? 0) <= initiallyOpenCardsCount
|
|
80767
|
-
@if (directorsArray && directorsArray.length) {
|
|
80768
|
-
<expandable-list-card
|
|
80769
|
-
[isValid]="sectionValidity['directors']"
|
|
80770
|
-
[areItemsOpen]="isOpenDirectors"
|
|
80771
|
-
[isStatusIcon]="statusIcon()"
|
|
80772
|
-
[config]="directorsCardFieldsMap"
|
|
80773
|
-
[configKey]="controls.AffiliationAddressType"
|
|
80774
|
-
[formArray]="directorsArray"
|
|
80775
|
-
[title]="groups.Directors"
|
|
80776
|
-
(visiblyValidChange)="onSectionValidChange('directors', $event)"
|
|
80777
|
-
|
|
80778
|
-
<p
|
|
80779
|
-
slot="subtitle"
|
|
80780
|
-
class="body-1-regular black"
|
|
80781
|
-
[innerHTML]="directorsSubtitle()"
|
|
80782
|
-
></p
|
|
80783
|
-
</expandable-list-card
|
|
80784
|
-
} @else {
|
|
80785
|
-
<expandable-card [title]="groups.Directors"
|
|
80786
|
-
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2
|
|
80787
|
-
</expandable-card
|
|
80788
|
-
}
|
|
80789
|
-
|
|
80790
|
-
@let sharesAndProvisions = getFormGroup(groups.SharesAndProvisions)
|
|
80791
|
-
|
|
80792
|
-
@if (sharesAndProvisions) {
|
|
80793
|
-
<expandable-card
|
|
80794
|
-
[isStatusIcon]="false"
|
|
80795
|
-
[title]="groups.SharesAndProvisions"
|
|
80796
|
-
|
|
80797
|
-
<filing-form-group
|
|
80798
|
-
[isSubmitted]="isSubmitted()"
|
|
80799
|
-
[form]="sharesAndProvisions"
|
|
80800
|
-
[config]="sharesAndProvincesFields"
|
|
80801
|
-
|
|
80802
|
-
</expandable-card
|
|
80803
|
-
}
|
|
80804
|
-
|
|
80805
|
-
@let isOpenIncorporators
|
|
80806
|
-
(incorporatorsArray?.length ?? 0) <= initiallyOpenCardsCount
|
|
80807
|
-
|
|
80808
|
-
@if (incorporatorsArray && incorporatorsArray.length) {
|
|
80809
|
-
<expandable-list-card
|
|
80810
|
-
[isValid]="sectionValidity['incorporators']"
|
|
80811
|
-
[areItemsOpen]="isOpenIncorporators"
|
|
80812
|
-
[isStatusIcon]="statusIcon()"
|
|
80813
|
-
[config]="incorporatorsCardFieldsMap"
|
|
80814
|
-
[configKey]="controls.AffiliationAddressType"
|
|
80815
|
-
[formArray]="incorporatorsArray"
|
|
80816
|
-
[isSubmitted]="isSubmitted()"
|
|
80817
|
-
[title]="groups.Incorporators"
|
|
80818
|
-
(visiblyValidChange)="onSectionValidChange('incorporators', $event)"
|
|
80819
|
-
|
|
80820
|
-
} @else {
|
|
80821
|
-
<expandable-card [title]="groups.Incorporators"
|
|
80822
|
-
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2
|
|
80823
|
-
</expandable-card
|
|
80824
|
-
}
|
|
80825
|
-
</div
|
|
80826
|
-
</div
|
|
80671
|
+
], template: `<div class="incorporation-form">\r
|
|
80672
|
+
@if (isNote()) {\r
|
|
80673
|
+
<alert\r
|
|
80674
|
+
[type]="alertType.Info"\r
|
|
80675
|
+
title="Entity changed"\r
|
|
80676
|
+
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
|
|
80677
|
+
/>\r
|
|
80678
|
+
}\r
|
|
80679
|
+
\r
|
|
80680
|
+
@if (errors().length) {\r
|
|
80681
|
+
<alert\r
|
|
80682
|
+
title="The following issues need to be resolved before proceeding:"\r
|
|
80683
|
+
[content]="errors()"\r
|
|
80684
|
+
/>\r
|
|
80685
|
+
}\r
|
|
80686
|
+
\r
|
|
80687
|
+
<div class="incorporation-form-content">\r
|
|
80688
|
+
@let referenceNumbers = getFormGroup(groups.ReferenceNumbers);\r
|
|
80689
|
+
\r
|
|
80690
|
+
@if (referenceNumbers) {\r
|
|
80691
|
+
<expandable-card [title]="groups.ReferenceNumbers">\r
|
|
80692
|
+
<div class="incorporation-form-item">\r
|
|
80693
|
+
<filing-form-group\r
|
|
80694
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80695
|
+
[form]="referenceNumbers"\r
|
|
80696
|
+
[config]="referenceNumbersFields"\r
|
|
80697
|
+
(visiblyValidChange)="onSectionValidChange('refNumbers', $event)"\r
|
|
80698
|
+
/>\r
|
|
80699
|
+
</div>\r
|
|
80700
|
+
</expandable-card>\r
|
|
80701
|
+
}\r
|
|
80702
|
+
\r
|
|
80703
|
+
@let corporationDetails = getFormGroup(groups.CorporationDetails);\r
|
|
80704
|
+
\r
|
|
80705
|
+
@if (corporationDetails) {\r
|
|
80706
|
+
<expandable-card\r
|
|
80707
|
+
[isValid]="sectionValidity['corpDetails']"\r
|
|
80708
|
+
[isStatusIcon]="statusIcon()"\r
|
|
80709
|
+
[title]="groups.CorporationDetails"\r
|
|
80710
|
+
>\r
|
|
80711
|
+
<div class="incorporation-form-item">\r
|
|
80712
|
+
<filing-form-group\r
|
|
80713
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80714
|
+
[form]="corporationDetails"\r
|
|
80715
|
+
[config]="corporationDetailsCardFields"\r
|
|
80716
|
+
(visiblyValidChange)="onSectionValidChange('corpDetails', $event)"\r
|
|
80717
|
+
/>\r
|
|
80718
|
+
</div>\r
|
|
80719
|
+
</expandable-card>\r
|
|
80720
|
+
}\r
|
|
80721
|
+
\r
|
|
80722
|
+
@if (isLegalOpinion) {\r
|
|
80723
|
+
@let legalOpinion = getFormGroup(groups.LegalOpinion);\r
|
|
80724
|
+
\r
|
|
80725
|
+
@if (legalOpinion) {\r
|
|
80726
|
+
<expandable-card\r
|
|
80727
|
+
[isValid]="\r
|
|
80728
|
+
sectionValidity['legalOpinionLawyer'] &&\r
|
|
80729
|
+
sectionValidity['legalOpinionAddress']\r
|
|
80730
|
+
"\r
|
|
80731
|
+
[isStatusIcon]="statusIcon()"\r
|
|
80732
|
+
[title]="groups.LegalOpinion"\r
|
|
80733
|
+
>\r
|
|
80734
|
+
<filing-form-group\r
|
|
80735
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80736
|
+
[form]="legalOpinion"\r
|
|
80737
|
+
[config]="legalOpinionLawyerFields()"\r
|
|
80738
|
+
(visiblyValidChange)="\r
|
|
80739
|
+
onSectionValidChange('legalOpinionLawyer', $event)\r
|
|
80740
|
+
"\r
|
|
80741
|
+
/>\r
|
|
80742
|
+
\r
|
|
80743
|
+
@if (legalOpinion.get(controls.LawyerSigningOpinion)?.value) {\r
|
|
80744
|
+
<filing-form-group\r
|
|
80745
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80746
|
+
[form]="legalOpinion"\r
|
|
80747
|
+
[config]="legalOpinionConfirmAddressFieldsMap[legalOpinion.get(controls.AffiliationAddressType)?.value]"\r
|
|
80748
|
+
(visiblyValidChange)="\r
|
|
80749
|
+
onSectionValidChange('legalOpinionAddress', $event)\r
|
|
80750
|
+
"\r
|
|
80751
|
+
/>\r
|
|
80752
|
+
}\r
|
|
80753
|
+
\r
|
|
80754
|
+
</expandable-card>\r
|
|
80755
|
+
}\r
|
|
80756
|
+
}\r
|
|
80757
|
+
\r
|
|
80758
|
+
@let registeredOfficeForm = getFormGroup(groups.RegisteredOfficeAddress);\r
|
|
80759
|
+
\r
|
|
80760
|
+
@if (registeredOfficeForm) {\r
|
|
80761
|
+
<expandable-card\r
|
|
80762
|
+
[isValid]="sectionValidity['registeredOffice']"\r
|
|
80763
|
+
[isStatusIcon]="statusIcon()"\r
|
|
80764
|
+
[title]="groups.RegisteredOfficeAddress"\r
|
|
80765
|
+
>\r
|
|
80766
|
+
<filing-form-group\r
|
|
80767
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80768
|
+
[form]="registeredOfficeForm"\r
|
|
80769
|
+
[config]="\r
|
|
80770
|
+
affiliationCardFieldsMap[\r
|
|
80771
|
+
registeredOfficeForm.get(\r
|
|
80772
|
+
formationFormControls.AffiliationAddressType\r
|
|
80773
|
+
)?.value\r
|
|
80774
|
+
]\r
|
|
80775
|
+
"\r
|
|
80776
|
+
(visiblyValidChange)="\r
|
|
80777
|
+
onSectionValidChange('registeredOffice', $event)\r
|
|
80778
|
+
"\r
|
|
80779
|
+
/>\r
|
|
80780
|
+
</expandable-card>\r
|
|
80781
|
+
}\r
|
|
80782
|
+
\r
|
|
80783
|
+
@let incorporatorsArray = getFormArray(groups.Incorporators);\r
|
|
80784
|
+
@let directorsArray = getFormArray(groups.Directors);\r
|
|
80785
|
+
\r
|
|
80786
|
+
@let isOpenDirectors =\r
|
|
80787
|
+
(directorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r
|
|
80788
|
+
@if (directorsArray && directorsArray.length) {\r
|
|
80789
|
+
<expandable-list-card\r
|
|
80790
|
+
[isValid]="sectionValidity['directors']"\r
|
|
80791
|
+
[areItemsOpen]="isOpenDirectors"\r
|
|
80792
|
+
[isStatusIcon]="statusIcon()"\r
|
|
80793
|
+
[config]="directorsCardFieldsMap"\r
|
|
80794
|
+
[configKey]="controls.AffiliationAddressType"\r
|
|
80795
|
+
[formArray]="directorsArray"\r
|
|
80796
|
+
[title]="groups.Directors"\r
|
|
80797
|
+
(visiblyValidChange)="onSectionValidChange('directors', $event)"\r
|
|
80798
|
+
>\r
|
|
80799
|
+
<p\r
|
|
80800
|
+
slot="subtitle"\r
|
|
80801
|
+
class="body-1-regular black"\r
|
|
80802
|
+
[innerHTML]="directorsSubtitle()"\r
|
|
80803
|
+
></p>\r
|
|
80804
|
+
</expandable-list-card>\r
|
|
80805
|
+
} @else {\r
|
|
80806
|
+
<expandable-card [title]="groups.Directors">\r
|
|
80807
|
+
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
|
|
80808
|
+
</expandable-card>\r
|
|
80809
|
+
}\r
|
|
80810
|
+
\r
|
|
80811
|
+
@let sharesAndProvisions = getFormGroup(groups.SharesAndProvisions);\r
|
|
80812
|
+
\r
|
|
80813
|
+
@if (sharesAndProvisions) {\r
|
|
80814
|
+
<expandable-card\r
|
|
80815
|
+
[isStatusIcon]="false"\r
|
|
80816
|
+
[title]="groups.SharesAndProvisions"\r
|
|
80817
|
+
>\r
|
|
80818
|
+
<filing-form-group\r
|
|
80819
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80820
|
+
[form]="sharesAndProvisions"\r
|
|
80821
|
+
[config]="sharesAndProvincesFields"\r
|
|
80822
|
+
/>\r
|
|
80823
|
+
</expandable-card>\r
|
|
80824
|
+
}\r
|
|
80825
|
+
\r
|
|
80826
|
+
@let isOpenIncorporators =\r
|
|
80827
|
+
(incorporatorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r
|
|
80828
|
+
\r
|
|
80829
|
+
@if (incorporatorsArray && incorporatorsArray.length) {\r
|
|
80830
|
+
<expandable-list-card\r
|
|
80831
|
+
[isValid]="sectionValidity['incorporators']"\r
|
|
80832
|
+
[areItemsOpen]="isOpenIncorporators"\r
|
|
80833
|
+
[isStatusIcon]="statusIcon()"\r
|
|
80834
|
+
[config]="incorporatorsCardFieldsMap"\r
|
|
80835
|
+
[configKey]="controls.AffiliationAddressType"\r
|
|
80836
|
+
[formArray]="incorporatorsArray"\r
|
|
80837
|
+
[isSubmitted]="isSubmitted()"\r
|
|
80838
|
+
[title]="groups.Incorporators"\r
|
|
80839
|
+
(visiblyValidChange)="onSectionValidChange('incorporators', $event)"\r
|
|
80840
|
+
/>\r
|
|
80841
|
+
} @else {\r
|
|
80842
|
+
<expandable-card [title]="groups.Incorporators">\r
|
|
80843
|
+
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
|
|
80844
|
+
</expandable-card>\r
|
|
80845
|
+
}\r
|
|
80846
|
+
</div>\r
|
|
80847
|
+
</div>\r
|
|
80827
80848
|
`, 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"] }]
|
|
80828
80849
|
}], () => [], null);
|
|
80829
80850
|
})();
|
|
@@ -80929,36 +80950,36 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
80929
80950
|
(() => {
|
|
80930
80951
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(OntarioIncorporationDeltaFormComponent, [{
|
|
80931
80952
|
type: Component,
|
|
80932
|
-
args: [{ standalone: true, selector: "ontario-incorporation-delta-form", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButton, TranslatePipe, OntarioIncorporationFormComponent], template: `<div class="incorporation-delta-form"
|
|
80933
|
-
<ontario-incorporation-form
|
|
80934
|
-
class="incorporation-delta-form-content"
|
|
80935
|
-
[form]="form()"
|
|
80936
|
-
[task]="task()"
|
|
80937
|
-
[errors]="combinedErrors()"
|
|
80938
|
-
[isNote]="isNote()"
|
|
80939
|
-
[isSubmitted]="submitted()"
|
|
80940
|
-
[statusIcon]="true"
|
|
80941
|
-
(visiblyValidChange)="onVisiblyValidChange($event)"
|
|
80942
|
-
|
|
80943
|
-
|
|
80944
|
-
<div class="incorporation-delta-form-actions"
|
|
80945
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
80946
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
80947
|
-
</button
|
|
80948
|
-
<button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button
|
|
80949
|
-
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span
|
|
80950
|
-
</button
|
|
80951
|
-
<button
|
|
80952
|
-
class="submit"
|
|
80953
|
-
color="primary"
|
|
80954
|
-
mat-flat-button
|
|
80955
|
-
[disabled]="actionsDisabled()"
|
|
80956
|
-
(click)="onValidate()"
|
|
80957
|
-
|
|
80958
|
-
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span
|
|
80959
|
-
</button
|
|
80960
|
-
</div
|
|
80961
|
-
</div
|
|
80953
|
+
args: [{ standalone: true, selector: "ontario-incorporation-delta-form", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButton, TranslatePipe, OntarioIncorporationFormComponent], template: `<div class="incorporation-delta-form">\r
|
|
80954
|
+
<ontario-incorporation-form\r
|
|
80955
|
+
class="incorporation-delta-form-content"\r
|
|
80956
|
+
[form]="form()"\r
|
|
80957
|
+
[task]="task()"\r
|
|
80958
|
+
[errors]="combinedErrors()"\r
|
|
80959
|
+
[isNote]="isNote()"\r
|
|
80960
|
+
[isSubmitted]="submitted()"\r
|
|
80961
|
+
[statusIcon]="true"\r
|
|
80962
|
+
(visiblyValidChange)="onVisiblyValidChange($event)"\r
|
|
80963
|
+
/>\r
|
|
80964
|
+
\r
|
|
80965
|
+
<div class="incorporation-delta-form-actions">\r
|
|
80966
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
80967
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
80968
|
+
</button>\r
|
|
80969
|
+
<button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>\r
|
|
80970
|
+
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
|
|
80971
|
+
</button>\r
|
|
80972
|
+
<button\r
|
|
80973
|
+
class="submit"\r
|
|
80974
|
+
color="primary"\r
|
|
80975
|
+
mat-flat-button\r
|
|
80976
|
+
[disabled]="actionsDisabled()"\r
|
|
80977
|
+
(click)="onValidate()"\r
|
|
80978
|
+
>\r
|
|
80979
|
+
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
|
|
80980
|
+
</button>\r
|
|
80981
|
+
</div>\r
|
|
80982
|
+
</div>\r
|
|
80962
80983
|
`, styles: ["/* src/app/components/ontario/incorporation/steps/delta/ontario-incorporation-delta-form.component.scss */\n:host .incorporation-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-delta-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .incorporation-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-delta-form-actions button {\n margin: 0;\n}\n:host .incorporation-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=ontario-incorporation-delta-form.component.css.map */\n"] }]
|
|
80963
80984
|
}], null, null);
|
|
80964
80985
|
})();
|
|
@@ -81035,29 +81056,29 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81035
81056
|
MatButton,
|
|
81036
81057
|
TranslatePipe,
|
|
81037
81058
|
OntarioIncorporationFormComponent
|
|
81038
|
-
], template: `<div class="incorporation-preview-form"
|
|
81039
|
-
<ontario-incorporation-form
|
|
81040
|
-
class="incorporation-preview-form-content"
|
|
81041
|
-
[form]="form()"
|
|
81042
|
-
[task]="task()"
|
|
81043
|
-
[statusIcon]="false"
|
|
81044
|
-
|
|
81045
|
-
|
|
81046
|
-
<div class="incorporation-preview-form-actions"
|
|
81047
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
81048
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
81049
|
-
</button
|
|
81050
|
-
<button
|
|
81051
|
-
class="submit"
|
|
81052
|
-
color="primary"
|
|
81053
|
-
mat-flat-button
|
|
81054
|
-
[disabled]="actionsDisabled()"
|
|
81055
|
-
(click)="next.emit()"
|
|
81056
|
-
|
|
81057
|
-
<span class="body-1-semibold">{{ 'File' | translate }}</span
|
|
81058
|
-
</button
|
|
81059
|
-
</div
|
|
81060
|
-
</div
|
|
81059
|
+
], template: `<div class="incorporation-preview-form">\r
|
|
81060
|
+
<ontario-incorporation-form\r
|
|
81061
|
+
class="incorporation-preview-form-content"\r
|
|
81062
|
+
[form]="form()"\r
|
|
81063
|
+
[task]="task()"\r
|
|
81064
|
+
[statusIcon]="false"\r
|
|
81065
|
+
/>\r
|
|
81066
|
+
\r
|
|
81067
|
+
<div class="incorporation-preview-form-actions">\r
|
|
81068
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
81069
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
81070
|
+
</button>\r
|
|
81071
|
+
<button\r
|
|
81072
|
+
class="submit"\r
|
|
81073
|
+
color="primary"\r
|
|
81074
|
+
mat-flat-button\r
|
|
81075
|
+
[disabled]="actionsDisabled()"\r
|
|
81076
|
+
(click)="next.emit()"\r
|
|
81077
|
+
>\r
|
|
81078
|
+
<span class="body-1-semibold">{{ 'File' | translate }}</span>\r
|
|
81079
|
+
</button>\r
|
|
81080
|
+
</div>\r
|
|
81081
|
+
</div>\r
|
|
81061
81082
|
`, styles: ["/* src/app/components/ontario/incorporation/steps/preview/ontario-incorporation-preview-form.component.scss */\n:host .incorporation-preview-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-preview-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-preview-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-preview-form-errors {\n padding: 0 16px;\n}\n:host .incorporation-preview-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-preview-form-actions button {\n margin: 0;\n}\n/*# sourceMappingURL=ontario-incorporation-preview-form.component.css.map */\n"] }]
|
|
81062
81083
|
}], null, null);
|
|
81063
81084
|
})();
|
|
@@ -81068,7 +81089,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81068
81089
|
});
|
|
81069
81090
|
|
|
81070
81091
|
// src/app/constants/initial-return-form.constants.ts
|
|
81071
|
-
var personFullAddressFormField, fullAddressFormField,
|
|
81092
|
+
var personFullAddressFormField, fullAddressFormField, currentNameFields, certifiedByAddressFormField, checkboxFormField, ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_NO_SUIT, ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_SUIT, ONTARIO_INITIAL_RETURN_FORM_GENERAL_FIELDS, ONTARIO_INITIAL_RETURN_CARD_FORM_ADDRESS_FIELDS_MAP, generatePersonFields, generateOntarioInitialReturnFormDirectorsFieldsMap, generateOntarioInitialReturnFormOfficerFieldsMap, generateCertifiedByFields, ONTARIO_INITIAL_RETURN_FORM_CERTIFIED_BY_FIELDS_MAP, generateOntarioInitialReturnFormContactControl;
|
|
81072
81093
|
var init_initial_return_form_constants = __esm({
|
|
81073
81094
|
"src/app/constants/initial-return-form.constants.ts"() {
|
|
81074
81095
|
init_form_enums();
|
|
@@ -81123,20 +81144,35 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81123
81144
|
},
|
|
81124
81145
|
class: "span-12"
|
|
81125
81146
|
};
|
|
81126
|
-
|
|
81127
|
-
|
|
81128
|
-
|
|
81129
|
-
|
|
81130
|
-
|
|
81131
|
-
|
|
81132
|
-
|
|
81133
|
-
|
|
81134
|
-
|
|
81135
|
-
|
|
81136
|
-
|
|
81147
|
+
currentNameFields = (label, options) => [
|
|
81148
|
+
{
|
|
81149
|
+
type: FormType.Checkbox,
|
|
81150
|
+
label: `Is this a change to an existing ${label}?`,
|
|
81151
|
+
class: "span-12",
|
|
81152
|
+
formControlName: IRFormControls.IsThisChangeToAnExistingEntity,
|
|
81153
|
+
isVisible: (form) => {
|
|
81154
|
+
return form.get(IRFormControls.IsThisChangeToAnExistingEntityVisible)?.value;
|
|
81155
|
+
},
|
|
81156
|
+
onChange: (form) => {
|
|
81157
|
+
const val = form.get(IRFormControls.IsThisChangeToAnExistingEntity)?.value;
|
|
81158
|
+
form.get(IRFormControls.AffiliationType)?.setValue(val ? IRAffiliationType.Update : IRAffiliationType.Add);
|
|
81159
|
+
if (!val) {
|
|
81160
|
+
form.get(IRFormControls.CurrentName)?.setValue("");
|
|
81161
|
+
}
|
|
81162
|
+
}
|
|
81137
81163
|
},
|
|
81138
|
-
|
|
81139
|
-
|
|
81164
|
+
{
|
|
81165
|
+
type: FormType.Select,
|
|
81166
|
+
label: `Existing ${label}`,
|
|
81167
|
+
formControlName: IRFormControls.CurrentName,
|
|
81168
|
+
required: true,
|
|
81169
|
+
dynamicOptions: (form) => options.filter((option) => option.label.toLowerCase().includes(form.get(IRFormControls.AffiliationName)?.value.toLowerCase())),
|
|
81170
|
+
isVisible: (form) => {
|
|
81171
|
+
return form.get(IRFormControls.AffiliationType)?.value !== IRAffiliationType.Ceased && form.get(IRFormControls.IsThisChangeToAnExistingEntity)?.value;
|
|
81172
|
+
},
|
|
81173
|
+
class: "span-6"
|
|
81174
|
+
}
|
|
81175
|
+
];
|
|
81140
81176
|
certifiedByAddressFormField = {
|
|
81141
81177
|
type: FormType.Text,
|
|
81142
81178
|
label: "",
|
|
@@ -81399,16 +81435,16 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81399
81435
|
}
|
|
81400
81436
|
];
|
|
81401
81437
|
generateOntarioInitialReturnFormDirectorsFieldsMap = (currentNameOptions) => ({
|
|
81402
|
-
[AffiliationAddressType.CanadianNoSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_NO_SUIT, checkboxFormField, personFullAddressFormField,
|
|
81403
|
-
[AffiliationAddressType.CanadianSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_SUIT, checkboxFormField, personFullAddressFormField,
|
|
81404
|
-
[AffiliationAddressType.InternationalNoSuite]: generatePersonFields([checkboxFormField, personFullAddressFormField,
|
|
81405
|
-
[AffiliationAddressType.InternationalSuite]: generatePersonFields([checkboxFormField, personFullAddressFormField,
|
|
81438
|
+
[AffiliationAddressType.CanadianNoSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_NO_SUIT, checkboxFormField, personFullAddressFormField, ...currentNameFields("Director", currentNameOptions)]),
|
|
81439
|
+
[AffiliationAddressType.CanadianSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_SUIT, checkboxFormField, personFullAddressFormField, ...currentNameFields("Director", currentNameOptions)]),
|
|
81440
|
+
[AffiliationAddressType.InternationalNoSuite]: generatePersonFields([checkboxFormField, personFullAddressFormField, ...currentNameFields("Director", currentNameOptions)]),
|
|
81441
|
+
[AffiliationAddressType.InternationalSuite]: generatePersonFields([checkboxFormField, personFullAddressFormField, ...currentNameFields("Director", currentNameOptions)])
|
|
81406
81442
|
});
|
|
81407
81443
|
generateOntarioInitialReturnFormOfficerFieldsMap = (currentNameOptions) => ({
|
|
81408
|
-
[AffiliationAddressType.CanadianNoSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_NO_SUIT, personFullAddressFormField,
|
|
81409
|
-
[AffiliationAddressType.CanadianSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_SUIT, personFullAddressFormField,
|
|
81410
|
-
[AffiliationAddressType.InternationalNoSuite]: generatePersonFields([personFullAddressFormField,
|
|
81411
|
-
[AffiliationAddressType.InternationalSuite]: generatePersonFields([personFullAddressFormField,
|
|
81444
|
+
[AffiliationAddressType.CanadianNoSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_NO_SUIT, personFullAddressFormField, ...currentNameFields("Officer", currentNameOptions)]),
|
|
81445
|
+
[AffiliationAddressType.CanadianSuite]: generatePersonFields([...ONTARIO_DELTA_CARD_FORM_AFFILIATION_FIELDS_CANADIAN_SUIT, personFullAddressFormField, ...currentNameFields("Officer", currentNameOptions)]),
|
|
81446
|
+
[AffiliationAddressType.InternationalNoSuite]: generatePersonFields([personFullAddressFormField, ...currentNameFields("Officer", currentNameOptions)]),
|
|
81447
|
+
[AffiliationAddressType.InternationalSuite]: generatePersonFields([personFullAddressFormField, ...currentNameFields("Officer", currentNameOptions)])
|
|
81412
81448
|
});
|
|
81413
81449
|
generateCertifiedByFields = (fields) => [
|
|
81414
81450
|
{
|
|
@@ -81537,7 +81573,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81537
81573
|
const directorsArray_r7 = \u0275\u0275readContextLet(8);
|
|
81538
81574
|
const isOpen_r8 = ((tmp_7_0 = directorsArray_r7 == null ? null : directorsArray_r7.length) !== null && tmp_7_0 !== void 0 ? tmp_7_0 : 0) <= ctx_r0.initiallyOpenCardsCount;
|
|
81539
81575
|
\u0275\u0275advance();
|
|
81540
|
-
\u0275\u0275property("prevData", (tmp_8_0 = ctx_r0.prevData()) == null ? null : tmp_8_0.
|
|
81576
|
+
\u0275\u0275property("prevData", (tmp_8_0 = ctx_r0.prevData()) == null ? null : tmp_8_0.persons)("isSubmitted", ctx_r0.isSubmitted())("isValid", ctx_r0.sectionValidity["directors"])("areItemsOpen", isOpen_r8)("isStatusIcon", !ctx_r0.readonly())("config", ctx_r0.directorsFieldsMap)("configKey", ctx_r0.controls.AffiliationAddressType)("formArray", directorsArray_r7)("title", ctx_r0.groups.Directors);
|
|
81541
81577
|
}
|
|
81542
81578
|
}
|
|
81543
81579
|
function OntarioUpdateMaintainFormComponent_Conditional_10_Template(rf, ctx) {
|
|
@@ -81573,7 +81609,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81573
81609
|
const officersArray_r10 = \u0275\u0275readContextLet(11);
|
|
81574
81610
|
const isOpen_r11 = ((tmp_7_0 = officersArray_r10 == null ? null : officersArray_r10.length) !== null && tmp_7_0 !== void 0 ? tmp_7_0 : 0) <= ctx_r0.initiallyOpenCardsCount;
|
|
81575
81611
|
\u0275\u0275advance();
|
|
81576
|
-
\u0275\u0275property("prevData", (tmp_8_0 = ctx_r0.prevData()) == null ? null : tmp_8_0.
|
|
81612
|
+
\u0275\u0275property("prevData", (tmp_8_0 = ctx_r0.prevData()) == null ? null : tmp_8_0.persons)("isSubmitted", ctx_r0.isSubmitted())("areItemsOpen", isOpen_r11)("isStatusIcon", !ctx_r0.readonly())("config", ctx_r0.officersFieldsMap)("configKey", ctx_r0.controls.AffiliationAddressType)("formArray", officersArray_r10)("title", ctx_r0.groups.Officers)("isValid", ctx_r0.sectionValidity["officers"]);
|
|
81577
81613
|
}
|
|
81578
81614
|
}
|
|
81579
81615
|
function OntarioUpdateMaintainFormComponent_Conditional_13_Template(rf, ctx) {
|
|
@@ -81623,16 +81659,21 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81623
81659
|
}
|
|
81624
81660
|
function OntarioUpdateMaintainFormComponent_Conditional_19_Template(rf, ctx) {
|
|
81625
81661
|
if (rf & 1) {
|
|
81626
|
-
\u0275\
|
|
81627
|
-
\u0275\
|
|
81628
|
-
\u0275\
|
|
81662
|
+
const _r14 = \u0275\u0275getCurrentView();
|
|
81663
|
+
\u0275\u0275elementStart(0, "expandable-card", 5)(1, "filing-form-group", 15);
|
|
81664
|
+
\u0275\u0275listener("visiblyValidChange", function OntarioUpdateMaintainFormComponent_Conditional_19_Template_filing_form_group_visiblyValidChange_1_listener($event) {
|
|
81665
|
+
\u0275\u0275restoreView(_r14);
|
|
81666
|
+
const ctx_r0 = \u0275\u0275nextContext();
|
|
81667
|
+
return \u0275\u0275resetView(ctx_r0.onSectionValidChange("contact", $event));
|
|
81668
|
+
});
|
|
81669
|
+
\u0275\u0275elementEnd()();
|
|
81629
81670
|
}
|
|
81630
81671
|
if (rf & 2) {
|
|
81631
81672
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
81632
|
-
const
|
|
81633
|
-
\u0275\u0275property("isStatusIcon", !ctx_r0.readonly())("isValid",
|
|
81673
|
+
const contact_r15 = \u0275\u0275readContextLet(18);
|
|
81674
|
+
\u0275\u0275property("isStatusIcon", !ctx_r0.readonly())("isValid", ctx_r0.sectionValidity["contact"])("title", ctx_r0.groups.Contact);
|
|
81634
81675
|
\u0275\u0275advance();
|
|
81635
|
-
\u0275\u0275property("isSubmitted", ctx_r0.isSubmitted())("form",
|
|
81676
|
+
\u0275\u0275property("isSubmitted", ctx_r0.isSubmitted())("form", contact_r15)("config", ctx_r0.contactsFields);
|
|
81636
81677
|
}
|
|
81637
81678
|
}
|
|
81638
81679
|
var OntarioUpdateMaintainFormComponent;
|
|
@@ -81647,6 +81688,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81647
81688
|
init_expandable_card_component();
|
|
81648
81689
|
init_expandable_list_card_component();
|
|
81649
81690
|
init_ngx_translate_core();
|
|
81691
|
+
init_common_utils();
|
|
81650
81692
|
init_core();
|
|
81651
81693
|
OntarioUpdateMaintainFormComponent = class _OntarioUpdateMaintainFormComponent {
|
|
81652
81694
|
form = input.required();
|
|
@@ -81671,12 +81713,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81671
81713
|
constructor() {
|
|
81672
81714
|
effect(() => {
|
|
81673
81715
|
const prevData = this.prevData();
|
|
81674
|
-
const
|
|
81675
|
-
const
|
|
81676
|
-
|
|
81677
|
-
|
|
81678
|
-
|
|
81679
|
-
this.
|
|
81716
|
+
const personKeys = Array.from(prevData?.persons?.keys() ?? []);
|
|
81717
|
+
const options = personKeys.map((key) => {
|
|
81718
|
+
const person = prevData?.persons.get(key);
|
|
81719
|
+
return { label: `${person?.fullName}, ${toTitleCase(person?.position ?? "")}`.trim(), value: key };
|
|
81720
|
+
});
|
|
81721
|
+
this.directorsFieldsMap = generateOntarioInitialReturnFormDirectorsFieldsMap(options);
|
|
81722
|
+
this.officersFieldsMap = generateOntarioInitialReturnFormOfficerFieldsMap(options);
|
|
81680
81723
|
});
|
|
81681
81724
|
effect(() => {
|
|
81682
81725
|
const task = this.task();
|
|
@@ -81702,7 +81745,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81702
81745
|
static \u0275fac = function OntarioUpdateMaintainFormComponent_Factory(__ngFactoryType__) {
|
|
81703
81746
|
return new (__ngFactoryType__ || _OntarioUpdateMaintainFormComponent)();
|
|
81704
81747
|
};
|
|
81705
|
-
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _OntarioUpdateMaintainFormComponent, selectors: [["ontario-update-maintain-form"]], inputs: { form: [1, "form"], task: [1, "task"], errors: [1, "errors"], isNote: [1, "isNote"], isSubmitted: [1, "isSubmitted"], readonly: [1, "readonly"], prevData: [1, "prevData"] }, outputs: { visiblyValidChange: "visiblyValidChange" }, decls: 20, vars: 17, consts: [[1, "ontario-update-maintain-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, "ontario-update-maintain-form-content"], [3, "title", "isStatusIcon"], [3, "isStatusIcon", "isValid", "title"], [3, "prevData", "isSubmitted", "isValid", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title"], [3, "title"], [3, "prevData", "isSubmitted", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title", "isValid"], [3, "prevData", "isSubmitted", "form", "config"], [1, "body-1-regular"], [3, "visiblyValidChange", "isSubmitted", "prevData", "form", "config", "label"], [3, "visiblyValidChange", "prevData", "isSubmitted", "form", "config"], [3, "visiblyValidChange", "prevData", "isSubmitted", "isValid", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title"], [3, "visiblyValidChange", "prevData", "isSubmitted", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title", "isValid"], [3, "isSubmitted", "form", "config"]], template: function OntarioUpdateMaintainFormComponent_Template(rf, ctx) {
|
|
81748
|
+
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _OntarioUpdateMaintainFormComponent, selectors: [["ontario-update-maintain-form"]], inputs: { form: [1, "form"], task: [1, "task"], errors: [1, "errors"], isNote: [1, "isNote"], isSubmitted: [1, "isSubmitted"], readonly: [1, "readonly"], prevData: [1, "prevData"] }, outputs: { visiblyValidChange: "visiblyValidChange" }, decls: 20, vars: 17, consts: [[1, "ontario-update-maintain-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, "ontario-update-maintain-form-content"], [3, "title", "isStatusIcon"], [3, "isStatusIcon", "isValid", "title"], [3, "prevData", "isSubmitted", "isValid", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title"], [3, "title"], [3, "prevData", "isSubmitted", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title", "isValid"], [3, "prevData", "isSubmitted", "form", "config"], [1, "body-1-regular"], [3, "visiblyValidChange", "isSubmitted", "prevData", "form", "config", "label"], [3, "visiblyValidChange", "prevData", "isSubmitted", "form", "config"], [3, "visiblyValidChange", "prevData", "isSubmitted", "isValid", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title"], [3, "visiblyValidChange", "prevData", "isSubmitted", "areItemsOpen", "isStatusIcon", "config", "configKey", "formArray", "title", "isValid"], [3, "visiblyValidChange", "isSubmitted", "form", "config"]], template: function OntarioUpdateMaintainFormComponent_Template(rf, ctx) {
|
|
81706
81749
|
if (rf & 1) {
|
|
81707
81750
|
\u0275\u0275elementStart(0, "div", 0);
|
|
81708
81751
|
\u0275\u0275template(1, OntarioUpdateMaintainFormComponent_Conditional_1_Template, 1, 1, "alert", 1)(2, OntarioUpdateMaintainFormComponent_Conditional_2_Template, 1, 1, "alert", 2);
|
|
@@ -81729,31 +81772,31 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81729
81772
|
\u0275\u0275advance();
|
|
81730
81773
|
\u0275\u0275conditional(ctx.errors().length ? 2 : -1);
|
|
81731
81774
|
\u0275\u0275advance(2);
|
|
81732
|
-
const
|
|
81775
|
+
const generalInfoForm_r16 = \u0275\u0275storeLet(ctx.getFormGroup(ctx.groups.General));
|
|
81733
81776
|
\u0275\u0275advance();
|
|
81734
|
-
\u0275\u0275conditional(
|
|
81777
|
+
\u0275\u0275conditional(generalInfoForm_r16 ? 5 : -1);
|
|
81735
81778
|
\u0275\u0275advance();
|
|
81736
|
-
const
|
|
81779
|
+
const registeredOfficeAddress_r17 = \u0275\u0275storeLet(ctx.getFormGroup(ctx.groups.RegisteredOfficeAddress));
|
|
81737
81780
|
\u0275\u0275advance();
|
|
81738
|
-
\u0275\u0275conditional(
|
|
81781
|
+
\u0275\u0275conditional(registeredOfficeAddress_r17 ? 7 : -1);
|
|
81739
81782
|
\u0275\u0275advance();
|
|
81740
|
-
const
|
|
81783
|
+
const directorsArray_r18 = \u0275\u0275storeLet(ctx.getFormArray(ctx.groups.Directors));
|
|
81741
81784
|
\u0275\u0275advance();
|
|
81742
|
-
\u0275\u0275conditional(
|
|
81785
|
+
\u0275\u0275conditional(directorsArray_r18 && directorsArray_r18.length ? 9 : 10);
|
|
81743
81786
|
\u0275\u0275advance(2);
|
|
81744
|
-
const
|
|
81787
|
+
const officersArray_r19 = \u0275\u0275storeLet(ctx.getFormArray(ctx.groups.Officers));
|
|
81745
81788
|
\u0275\u0275advance();
|
|
81746
|
-
\u0275\u0275conditional(
|
|
81789
|
+
\u0275\u0275conditional(officersArray_r19 && officersArray_r19.length ? 12 : 13);
|
|
81747
81790
|
\u0275\u0275advance(2);
|
|
81748
|
-
const
|
|
81791
|
+
const certifiedBy_r20 = \u0275\u0275storeLet(ctx.getFormGroup(ctx.groups.CertifiedBy));
|
|
81749
81792
|
\u0275\u0275advance();
|
|
81750
|
-
\u0275\u0275property("isStatusIcon", !ctx.readonly())("isValid",
|
|
81793
|
+
\u0275\u0275property("isStatusIcon", !ctx.readonly())("isValid", certifiedBy_r20 ? ctx.sectionValidity["certifiedBy"] : true)("title", ctx.groups.CertifiedBy);
|
|
81751
81794
|
\u0275\u0275advance();
|
|
81752
|
-
\u0275\u0275conditional(
|
|
81795
|
+
\u0275\u0275conditional(certifiedBy_r20 ? 16 : 17);
|
|
81753
81796
|
\u0275\u0275advance(2);
|
|
81754
|
-
const
|
|
81797
|
+
const contact_r21 = \u0275\u0275storeLet(ctx.getFormGroup(ctx.groups.Contact));
|
|
81755
81798
|
\u0275\u0275advance();
|
|
81756
|
-
\u0275\u0275conditional(
|
|
81799
|
+
\u0275\u0275conditional(contact_r21 ? 19 : -1);
|
|
81757
81800
|
}
|
|
81758
81801
|
}, dependencies: [
|
|
81759
81802
|
FilingFormGroupComponent,
|
|
@@ -81772,158 +81815,159 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
81772
81815
|
ExpandableCardComponent,
|
|
81773
81816
|
ExpandableListCardComponent,
|
|
81774
81817
|
TranslatePipe
|
|
81775
|
-
], template: `<div class="ontario-update-maintain-form"
|
|
81776
|
-
@if (isNote()) {
|
|
81777
|
-
<alert
|
|
81778
|
-
[type]="alertType.Info"
|
|
81779
|
-
title="Entity changed"
|
|
81780
|
-
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
|
|
81781
|
-
|
|
81782
|
-
}
|
|
81783
|
-
|
|
81784
|
-
@if (errors().length) {
|
|
81785
|
-
<alert
|
|
81786
|
-
title="The following issues need to be resolved before proceeding:"
|
|
81787
|
-
[content]="errors()"
|
|
81788
|
-
|
|
81789
|
-
}
|
|
81790
|
-
|
|
81791
|
-
<div class="ontario-update-maintain-form-content"
|
|
81792
|
-
<!-- ===== GENERAL INFO =====
|
|
81793
|
-
@let generalInfoForm = getFormGroup(groups.General)
|
|
81794
|
-
@if (generalInfoForm) {
|
|
81795
|
-
<expandable-card
|
|
81796
|
-
[title]="groups.General"
|
|
81797
|
-
[isStatusIcon]="!readonly()"
|
|
81798
|
-
|
|
81799
|
-
<filing-form-group
|
|
81800
|
-
[isSubmitted]="isSubmitted()"
|
|
81801
|
-
[prevData]="prevData()?.corporationInfo"
|
|
81802
|
-
[form]="generalInfoForm"
|
|
81803
|
-
[config]="generalCardFields"
|
|
81804
|
-
[label]="groups.General"
|
|
81805
|
-
(visiblyValidChange)="onSectionValidChange('generalInfo', $event)"
|
|
81806
|
-
|
|
81807
|
-
</expandable-card
|
|
81808
|
-
}
|
|
81809
|
-
|
|
81810
|
-
<!-- =====REGISTERED OFFICE ADDRESS=====
|
|
81811
|
-
@let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress)
|
|
81812
|
-
@if (registeredOfficeAddress) {
|
|
81813
|
-
<expandable-card
|
|
81814
|
-
[isStatusIcon]="!readonly()"
|
|
81815
|
-
[isValid]="sectionValidity['registeredOffice']"
|
|
81816
|
-
[title]="groups.RegisteredOfficeAddress"
|
|
81817
|
-
|
|
81818
|
-
<filing-form-group
|
|
81819
|
-
[prevData]="prevData()?.corporationInfo"
|
|
81820
|
-
[isSubmitted]="isSubmitted()"
|
|
81821
|
-
[form]="registeredOfficeAddress"
|
|
81822
|
-
[config]="
|
|
81823
|
-
addressFieldsMap[
|
|
81824
|
-
registeredOfficeAddress.get(controls.AffiliationAddressType)
|
|
81825
|
-
?.value
|
|
81826
|
-
]
|
|
81827
|
-
"
|
|
81828
|
-
(visiblyValidChange)="
|
|
81829
|
-
onSectionValidChange('registeredOffice', $event)
|
|
81830
|
-
"
|
|
81831
|
-
|
|
81832
|
-
</expandable-card
|
|
81833
|
-
}
|
|
81834
|
-
|
|
81835
|
-
@let directorsArray = getFormArray(groups.Directors)
|
|
81836
|
-
@if (directorsArray && directorsArray.length) {
|
|
81837
|
-
@let isOpen
|
|
81838
|
-
(directorsArray?.length ?? 0) <= initiallyOpenCardsCount
|
|
81839
|
-
<expandable-list-card
|
|
81840
|
-
[prevData]="prevData()?.
|
|
81841
|
-
[isSubmitted]="isSubmitted()"
|
|
81842
|
-
[isValid]="sectionValidity['directors']"
|
|
81843
|
-
[areItemsOpen]="isOpen"
|
|
81844
|
-
[isStatusIcon]="!readonly()"
|
|
81845
|
-
[config]="directorsFieldsMap"
|
|
81846
|
-
[configKey]="controls.AffiliationAddressType"
|
|
81847
|
-
[formArray]="directorsArray"
|
|
81848
|
-
[title]="groups.Directors"
|
|
81849
|
-
(visiblyValidChange)="onSectionValidChange('directors', $event)"
|
|
81850
|
-
|
|
81851
|
-
} @else {
|
|
81852
|
-
<expandable-card [title]="groups.Directors"
|
|
81853
|
-
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2
|
|
81854
|
-
</expandable-card
|
|
81855
|
-
}
|
|
81856
|
-
|
|
81857
|
-
@let officersArray = getFormArray(groups.Officers)
|
|
81858
|
-
|
|
81859
|
-
|
|
81860
|
-
@if (officersArray && officersArray.length) {
|
|
81861
|
-
@let isOpen
|
|
81862
|
-
(officersArray?.length ?? 0) <= initiallyOpenCardsCount
|
|
81863
|
-
|
|
81864
|
-
<expandable-list-card
|
|
81865
|
-
[prevData]="prevData()?.
|
|
81866
|
-
[isSubmitted]="isSubmitted()"
|
|
81867
|
-
[areItemsOpen]="isOpen"
|
|
81868
|
-
[isStatusIcon]="!readonly()"
|
|
81869
|
-
[config]="officersFieldsMap"
|
|
81870
|
-
[configKey]="controls.AffiliationAddressType"
|
|
81871
|
-
[formArray]="officersArray"
|
|
81872
|
-
[title]="groups.Officers"
|
|
81873
|
-
[isValid]="sectionValidity['officers']"
|
|
81874
|
-
(visiblyValidChange)="onSectionValidChange('officers', $event)"
|
|
81875
|
-
|
|
81876
|
-
} @else {
|
|
81877
|
-
<expandable-card [title]="groups.Officers"
|
|
81878
|
-
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2
|
|
81879
|
-
</expandable-card
|
|
81880
|
-
}
|
|
81881
|
-
|
|
81882
|
-
@let certifiedBy = getFormGroup(groups.CertifiedBy)
|
|
81883
|
-
<expandable-card
|
|
81884
|
-
[isStatusIcon]="!readonly()"
|
|
81885
|
-
[isValid]="certifiedBy ? sectionValidity['certifiedBy'] : true"
|
|
81886
|
-
[title]="groups.CertifiedBy"
|
|
81887
|
-
|
|
81888
|
-
@if (certifiedBy) {
|
|
81889
|
-
<filing-form-group
|
|
81890
|
-
[prevData]="prevData()?.corporationInfo"
|
|
81891
|
-
[isSubmitted]="isSubmitted()"
|
|
81892
|
-
[form]="certifiedBy"
|
|
81893
|
-
[config]="
|
|
81894
|
-
certifiedByFieldsMap[
|
|
81895
|
-
certifiedBy.get(controls.AffiliationAddressType)?.value
|
|
81896
|
-
]
|
|
81897
|
-
"
|
|
81898
|
-
(visiblyValidChange)="onSectionValidChange('certifiedBy', $event)"
|
|
81899
|
-
|
|
81900
|
-
} @else {
|
|
81901
|
-
<h2 class="body-1-regular">{{ 'Not specified' | translate }}</h2
|
|
81902
|
-
}
|
|
81903
|
-
|
|
81904
|
-
</expandable-card
|
|
81905
|
-
|
|
81906
|
-
@let contact = getFormGroup(groups.Contact)
|
|
81907
|
-
@if (contact) {
|
|
81908
|
-
<expandable-card
|
|
81909
|
-
[isStatusIcon]="!readonly()"
|
|
81910
|
-
[isValid]="
|
|
81911
|
-
[title]="groups.Contact"
|
|
81912
|
-
|
|
81913
|
-
<filing-form-group
|
|
81914
|
-
[isSubmitted]="isSubmitted()"
|
|
81915
|
-
[form]="contact"
|
|
81916
|
-
[config]="contactsFields"
|
|
81917
|
-
|
|
81918
|
-
|
|
81919
|
-
|
|
81920
|
-
|
|
81921
|
-
</div
|
|
81818
|
+
], template: `<div class="ontario-update-maintain-form">\r
|
|
81819
|
+
@if (isNote()) {\r
|
|
81820
|
+
<alert\r
|
|
81821
|
+
[type]="alertType.Info"\r
|
|
81822
|
+
title="Entity changed"\r
|
|
81823
|
+
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
|
|
81824
|
+
/>\r
|
|
81825
|
+
}\r
|
|
81826
|
+
\r
|
|
81827
|
+
@if (errors().length) {\r
|
|
81828
|
+
<alert\r
|
|
81829
|
+
title="The following issues need to be resolved before proceeding:"\r
|
|
81830
|
+
[content]="errors()"\r
|
|
81831
|
+
/>\r
|
|
81832
|
+
}\r
|
|
81833
|
+
\r
|
|
81834
|
+
<div class="ontario-update-maintain-form-content">\r
|
|
81835
|
+
<!-- ===== GENERAL INFO ===== -->\r
|
|
81836
|
+
@let generalInfoForm = getFormGroup(groups.General);\r
|
|
81837
|
+
@if (generalInfoForm) {\r
|
|
81838
|
+
<expandable-card\r
|
|
81839
|
+
[title]="groups.General"\r
|
|
81840
|
+
[isStatusIcon]="!readonly()"\r
|
|
81841
|
+
>\r
|
|
81842
|
+
<filing-form-group\r
|
|
81843
|
+
[isSubmitted]="isSubmitted()"\r
|
|
81844
|
+
[prevData]="prevData()?.corporationInfo"\r
|
|
81845
|
+
[form]="generalInfoForm"\r
|
|
81846
|
+
[config]="generalCardFields"\r
|
|
81847
|
+
[label]="groups.General"\r
|
|
81848
|
+
(visiblyValidChange)="onSectionValidChange('generalInfo', $event)"\r
|
|
81849
|
+
/>\r
|
|
81850
|
+
</expandable-card>\r
|
|
81851
|
+
}\r
|
|
81852
|
+
\r
|
|
81853
|
+
<!-- =====REGISTERED OFFICE ADDRESS===== -->\r
|
|
81854
|
+
@let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress);\r
|
|
81855
|
+
@if (registeredOfficeAddress) {\r
|
|
81856
|
+
<expandable-card\r
|
|
81857
|
+
[isStatusIcon]="!readonly()"\r
|
|
81858
|
+
[isValid]="sectionValidity['registeredOffice']"\r
|
|
81859
|
+
[title]="groups.RegisteredOfficeAddress"\r
|
|
81860
|
+
>\r
|
|
81861
|
+
<filing-form-group\r
|
|
81862
|
+
[prevData]="prevData()?.corporationInfo"\r
|
|
81863
|
+
[isSubmitted]="isSubmitted()"\r
|
|
81864
|
+
[form]="registeredOfficeAddress"\r
|
|
81865
|
+
[config]="\r
|
|
81866
|
+
addressFieldsMap[\r
|
|
81867
|
+
registeredOfficeAddress.get(controls.AffiliationAddressType)\r
|
|
81868
|
+
?.value\r
|
|
81869
|
+
]\r
|
|
81870
|
+
"\r
|
|
81871
|
+
(visiblyValidChange)="\r
|
|
81872
|
+
onSectionValidChange('registeredOffice', $event)\r
|
|
81873
|
+
"\r
|
|
81874
|
+
/>\r
|
|
81875
|
+
</expandable-card>\r
|
|
81876
|
+
}\r
|
|
81877
|
+
\r
|
|
81878
|
+
@let directorsArray = getFormArray(groups.Directors);\r
|
|
81879
|
+
@if (directorsArray && directorsArray.length) {\r
|
|
81880
|
+
@let isOpen =\r
|
|
81881
|
+
(directorsArray?.length ?? 0) <= initiallyOpenCardsCount;\r
|
|
81882
|
+
<expandable-list-card\r
|
|
81883
|
+
[prevData]="prevData()?.persons"\r
|
|
81884
|
+
[isSubmitted]="isSubmitted()"\r
|
|
81885
|
+
[isValid]="sectionValidity['directors']"\r
|
|
81886
|
+
[areItemsOpen]="isOpen"\r
|
|
81887
|
+
[isStatusIcon]="!readonly()"\r
|
|
81888
|
+
[config]="directorsFieldsMap"\r
|
|
81889
|
+
[configKey]="controls.AffiliationAddressType"\r
|
|
81890
|
+
[formArray]="directorsArray"\r
|
|
81891
|
+
[title]="groups.Directors"\r
|
|
81892
|
+
(visiblyValidChange)="onSectionValidChange('directors', $event)"\r
|
|
81893
|
+
/>\r
|
|
81894
|
+
} @else {\r
|
|
81895
|
+
<expandable-card [title]="groups.Directors">\r
|
|
81896
|
+
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
|
|
81897
|
+
</expandable-card>\r
|
|
81898
|
+
}\r
|
|
81899
|
+
\r
|
|
81900
|
+
@let officersArray = getFormArray(groups.Officers);\r
|
|
81901
|
+
\r
|
|
81902
|
+
\r
|
|
81903
|
+
@if (officersArray && officersArray.length) {\r
|
|
81904
|
+
@let isOpen =\r
|
|
81905
|
+
(officersArray?.length ?? 0) <= initiallyOpenCardsCount;\r
|
|
81906
|
+
\r
|
|
81907
|
+
<expandable-list-card\r
|
|
81908
|
+
[prevData]="prevData()?.persons"\r
|
|
81909
|
+
[isSubmitted]="isSubmitted()"\r
|
|
81910
|
+
[areItemsOpen]="isOpen"\r
|
|
81911
|
+
[isStatusIcon]="!readonly()"\r
|
|
81912
|
+
[config]="officersFieldsMap"\r
|
|
81913
|
+
[configKey]="controls.AffiliationAddressType"\r
|
|
81914
|
+
[formArray]="officersArray"\r
|
|
81915
|
+
[title]="groups.Officers"\r
|
|
81916
|
+
[isValid]="sectionValidity['officers']"\r
|
|
81917
|
+
(visiblyValidChange)="onSectionValidChange('officers', $event)"\r
|
|
81918
|
+
/>\r
|
|
81919
|
+
} @else {\r
|
|
81920
|
+
<expandable-card [title]="groups.Officers">\r
|
|
81921
|
+
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
|
|
81922
|
+
</expandable-card>\r
|
|
81923
|
+
}\r
|
|
81924
|
+
\r
|
|
81925
|
+
@let certifiedBy = getFormGroup(groups.CertifiedBy);\r
|
|
81926
|
+
<expandable-card\r
|
|
81927
|
+
[isStatusIcon]="!readonly()"\r
|
|
81928
|
+
[isValid]="certifiedBy ? sectionValidity['certifiedBy'] : true"\r
|
|
81929
|
+
[title]="groups.CertifiedBy"\r
|
|
81930
|
+
>\r
|
|
81931
|
+
@if (certifiedBy) {\r
|
|
81932
|
+
<filing-form-group\r
|
|
81933
|
+
[prevData]="prevData()?.corporationInfo"\r
|
|
81934
|
+
[isSubmitted]="isSubmitted()"\r
|
|
81935
|
+
[form]="certifiedBy"\r
|
|
81936
|
+
[config]="\r
|
|
81937
|
+
certifiedByFieldsMap[\r
|
|
81938
|
+
certifiedBy.get(controls.AffiliationAddressType)?.value\r
|
|
81939
|
+
]\r
|
|
81940
|
+
"\r
|
|
81941
|
+
(visiblyValidChange)="onSectionValidChange('certifiedBy', $event)"\r
|
|
81942
|
+
/>\r
|
|
81943
|
+
} @else {\r
|
|
81944
|
+
<h2 class="body-1-regular">{{ 'Not specified' | translate }}</h2>\r
|
|
81945
|
+
}\r
|
|
81946
|
+
\r
|
|
81947
|
+
</expandable-card>\r
|
|
81948
|
+
\r
|
|
81949
|
+
@let contact = getFormGroup(groups.Contact);\r
|
|
81950
|
+
@if (contact) {\r
|
|
81951
|
+
<expandable-card\r
|
|
81952
|
+
[isStatusIcon]="!readonly()"\r
|
|
81953
|
+
[isValid]="sectionValidity['contact']"\r
|
|
81954
|
+
[title]="groups.Contact"\r
|
|
81955
|
+
>\r
|
|
81956
|
+
<filing-form-group\r
|
|
81957
|
+
[isSubmitted]="isSubmitted()"\r
|
|
81958
|
+
[form]="contact"\r
|
|
81959
|
+
[config]="contactsFields"\r
|
|
81960
|
+
(visiblyValidChange)="onSectionValidChange('contact', $event)"\r
|
|
81961
|
+
/>\r
|
|
81962
|
+
</expandable-card>\r
|
|
81963
|
+
}\r
|
|
81964
|
+
</div>\r
|
|
81965
|
+
</div>\r
|
|
81922
81966
|
`, styles: ["/* src/app/components/ontario/update-maintain/update-maintain-form/update-maintain-form.component.scss */\n:host .ontario-update-maintain-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n overflow-y: auto;\n}\n:host .ontario-update-maintain-form-content {\n display: flex;\n flex-direction: column;\n gap: 24px;\n}\n:host .ontario-update-maintain-form-section {\n display: flex;\n flex-direction: column;\n gap: 12px;\n}\n:host .ontario-update-maintain-form-section-title {\n font-size: 14px;\n font-weight: 600;\n color: var(--filing-modal-color-dark-blue, #1a2e5a);\n margin: 0;\n padding-bottom: 8px;\n border-bottom: 1px solid var(--color-border, #e0e0e0);\n}\n:host .ontario-update-maintain-form-principal {\n padding: 12px 0;\n border-bottom: 1px solid var(--color-border, #e0e0e0);\n}\n:host .ontario-update-maintain-form-principal:last-child {\n border-bottom: none;\n}\n/*# sourceMappingURL=update-maintain-form.component.css.map */\n"] }]
|
|
81923
81967
|
}], () => [], null);
|
|
81924
81968
|
})();
|
|
81925
81969
|
(() => {
|
|
81926
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(OntarioUpdateMaintainFormComponent, { className: "OntarioUpdateMaintainFormComponent", filePath: "src/app/components/ontario/update-maintain/update-maintain-form/update-maintain-form.component.ts", lineNumber:
|
|
81970
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(OntarioUpdateMaintainFormComponent, { className: "OntarioUpdateMaintainFormComponent", filePath: "src/app/components/ontario/update-maintain/update-maintain-form/update-maintain-form.component.ts", lineNumber: 44 });
|
|
81927
81971
|
})();
|
|
81928
81972
|
}
|
|
81929
81973
|
});
|
|
@@ -82033,38 +82077,38 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82033
82077
|
MatButton,
|
|
82034
82078
|
TranslatePipe,
|
|
82035
82079
|
OntarioUpdateMaintainFormComponent
|
|
82036
|
-
], template: `<div class="ontario-update-maintain-delta-form"
|
|
82037
|
-
<ontario-update-maintain-form
|
|
82038
|
-
class="ontario-update-maintain-delta-form-content"
|
|
82039
|
-
[form]="form()"
|
|
82040
|
-
[task]="task()"
|
|
82041
|
-
[errors]="combinedErrors()"
|
|
82042
|
-
[isNote]="isNote()"
|
|
82043
|
-
[isSubmitted]="submitted()"
|
|
82044
|
-
[readonly]="false"
|
|
82045
|
-
[prevData]="prevData()"
|
|
82046
|
-
(visiblyValidChange)="onVisiblyValidChange($event)"
|
|
82047
|
-
|
|
82048
|
-
|
|
82049
|
-
<div class="ontario-update-maintain-delta-form-actions"
|
|
82050
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
82051
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
82052
|
-
</button
|
|
82053
|
-
<button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button
|
|
82054
|
-
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span
|
|
82055
|
-
</button
|
|
82056
|
-
<button
|
|
82057
|
-
class="submit"
|
|
82058
|
-
color="primary"
|
|
82059
|
-
mat-flat-button
|
|
82060
|
-
[disabled]="actionsDisabled()"
|
|
82061
|
-
(click)="onValidate()"
|
|
82062
|
-
|
|
82063
|
-
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span
|
|
82064
|
-
</button
|
|
82065
|
-
</div
|
|
82066
|
-
</div
|
|
82067
|
-
|
|
82080
|
+
], template: `<div class="ontario-update-maintain-delta-form">\r
|
|
82081
|
+
<ontario-update-maintain-form\r
|
|
82082
|
+
class="ontario-update-maintain-delta-form-content"\r
|
|
82083
|
+
[form]="form()"\r
|
|
82084
|
+
[task]="task()"\r
|
|
82085
|
+
[errors]="combinedErrors()"\r
|
|
82086
|
+
[isNote]="isNote()"\r
|
|
82087
|
+
[isSubmitted]="submitted()"\r
|
|
82088
|
+
[readonly]="false"\r
|
|
82089
|
+
[prevData]="prevData()"\r
|
|
82090
|
+
(visiblyValidChange)="onVisiblyValidChange($event)"\r
|
|
82091
|
+
/>\r
|
|
82092
|
+
\r
|
|
82093
|
+
<div class="ontario-update-maintain-delta-form-actions">\r
|
|
82094
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
82095
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
82096
|
+
</button>\r
|
|
82097
|
+
<button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>\r
|
|
82098
|
+
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
|
|
82099
|
+
</button>\r
|
|
82100
|
+
<button\r
|
|
82101
|
+
class="submit"\r
|
|
82102
|
+
color="primary"\r
|
|
82103
|
+
mat-flat-button\r
|
|
82104
|
+
[disabled]="actionsDisabled()"\r
|
|
82105
|
+
(click)="onValidate()"\r
|
|
82106
|
+
>\r
|
|
82107
|
+
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
|
|
82108
|
+
</button>\r
|
|
82109
|
+
</div>\r
|
|
82110
|
+
</div>\r
|
|
82111
|
+
\r
|
|
82068
82112
|
`, styles: ["/* src/app/components/ontario/update-maintain/steps/delta/update-maintain-delta-form.component.scss */\n:host .ontario-update-maintain-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .ontario-update-maintain-delta-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .ontario-update-maintain-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .ontario-update-maintain-delta-form-actions button {\n margin: 0;\n}\n:host .ontario-update-maintain-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-delta-form.component.css.map */\n"] }]
|
|
82069
82113
|
}], null, null);
|
|
82070
82114
|
})();
|
|
@@ -82139,32 +82183,32 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82139
82183
|
MatButton,
|
|
82140
82184
|
OntarioUpdateMaintainFormComponent,
|
|
82141
82185
|
TranslatePipe
|
|
82142
|
-
], template: `<div class="ontario-update-maintain-preview-form"
|
|
82143
|
-
<ontario-update-maintain-form
|
|
82144
|
-
class="ontario-update-maintain-preview-form-content"
|
|
82145
|
-
[form]="form()"
|
|
82146
|
-
[task]="task()"
|
|
82147
|
-
[errors]="errors()"
|
|
82148
|
-
[isSubmitted]="false"
|
|
82149
|
-
[readonly]="false"
|
|
82150
|
-
|
|
82151
|
-
|
|
82152
|
-
<div class="ontario-update-maintain-preview-form-actions"
|
|
82153
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
82154
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
82155
|
-
</button
|
|
82156
|
-
<button
|
|
82157
|
-
class="submit"
|
|
82158
|
-
color="primary"
|
|
82159
|
-
mat-flat-button
|
|
82160
|
-
[disabled]="actionsDisabled()"
|
|
82161
|
-
(click)="file.emit()"
|
|
82162
|
-
|
|
82163
|
-
<span class="body-1-semibold">{{ 'File' | translate }}</span
|
|
82164
|
-
</button
|
|
82165
|
-
</div
|
|
82166
|
-
</div
|
|
82167
|
-
|
|
82186
|
+
], template: `<div class="ontario-update-maintain-preview-form">\r
|
|
82187
|
+
<ontario-update-maintain-form\r
|
|
82188
|
+
class="ontario-update-maintain-preview-form-content"\r
|
|
82189
|
+
[form]="form()"\r
|
|
82190
|
+
[task]="task()"\r
|
|
82191
|
+
[errors]="errors()"\r
|
|
82192
|
+
[isSubmitted]="false"\r
|
|
82193
|
+
[readonly]="false"\r
|
|
82194
|
+
/>\r
|
|
82195
|
+
\r
|
|
82196
|
+
<div class="ontario-update-maintain-preview-form-actions">\r
|
|
82197
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
82198
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
82199
|
+
</button>\r
|
|
82200
|
+
<button\r
|
|
82201
|
+
class="submit"\r
|
|
82202
|
+
color="primary"\r
|
|
82203
|
+
mat-flat-button\r
|
|
82204
|
+
[disabled]="actionsDisabled()"\r
|
|
82205
|
+
(click)="file.emit()"\r
|
|
82206
|
+
>\r
|
|
82207
|
+
<span class="body-1-semibold">{{ 'File' | translate }}</span>\r
|
|
82208
|
+
</button>\r
|
|
82209
|
+
</div>\r
|
|
82210
|
+
</div>\r
|
|
82211
|
+
\r
|
|
82168
82212
|
`, styles: ["/* src/app/components/ontario/update-maintain/steps/preview/update-maintain-preview-form.component.scss */\n:host .ontario-update-maintain-preview-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .ontario-update-maintain-preview-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .ontario-update-maintain-preview-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .ontario-update-maintain-preview-form-actions button {\n margin: 0;\n}\n:host .ontario-update-maintain-preview-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-preview-form.component.css.map */\n"] }]
|
|
82169
82213
|
}], null, null);
|
|
82170
82214
|
})();
|
|
@@ -82634,7 +82678,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
82634
82678
|
OntarioIncorporationDeltaFormComponent,
|
|
82635
82679
|
OntarioIncorporationPreviewFormComponent,
|
|
82636
82680
|
TermsAndConditionsComponent
|
|
82637
|
-
], template: '@let taskData = this.task();\n\n@if (isFormationTask(taskData)) {\n @if (activeStep() === steps.Validate) {\n <ontario-incorporation-delta-form\n [task]="taskData"\n [errors]="errors()"\n [isNote]="isNote()"\n [actionsDisabled]="actionsDisabled()"\n [form]="deltaForm()"\n (validate)="onFormationValidate()"\n (close)="onClose()"\n (save)="onFormationSave()"\n />\n }\n\n @if (activeStep() === steps.FilingPreview) {\n <ontario-incorporation-preview-form\n [task]="taskData"\n [form]="previewForm()"\n [actionsDisabled]="actionsDisabled()"\n (next)="nextStep.emit()"\n (close)="close.emit()"\n />\n }\n\n @if (activeStep() === steps.TermsAndConditions) {\n <terms-and-conditions\n (prev)="prevStep.emit()"\n (close)="close.emit()"\n (confirm)="onFormationSubmit($event)"\n />\n }\n}\n\n@if (isInitialReturnTask(task())) {\n @if (activeStep() === steps.Validate) {\n <ontario-update-maintain-delta-form\n [task]="$any(task())"\n [form]="deltaForm()"\n [actionsDisabled]="actionsDisabled()"\n [prevData]="prevData()"\n [errors]="errors()"\n [isNote]="isNote()"\n (validate)="onInitialReturnValidate()"\n (close)="onClose()"\n (save)="onInitialReturnSave()"\n />\n }\n\n @if (activeStep() === steps.FilingPreview) {\n <ontario-update-maintain-preview-form\n [task]="$any(task())"\n [form]="previewForm()"\n [actionsDisabled]="actionsDisabled()"\n [errors]="errors()"\n (close)="close.emit()"\n (file)="nextStep.emit()"\n />\n }\n\n @if (activeStep() === steps.TermsAndConditions) {\n <terms-and-conditions\n (prev)="prevStep.emit()"\n (close)="close.emit()"\n (confirm)="onIrSubmit($event)"\n />\n }\n}\n', styles: ["/* src/app/components/ontario/ontario.component.scss */\n:host {\n display: contents;\n}\n/*# sourceMappingURL=ontario.component.css.map */\n"] }]
|
|
82681
|
+
], template: '@let taskData = this.task();\r\n\r\n@if (isFormationTask(taskData)) {\r\n @if (activeStep() === steps.Validate) {\r\n <ontario-incorporation-delta-form\r\n [task]="taskData"\r\n [errors]="errors()"\r\n [isNote]="isNote()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [form]="deltaForm()"\r\n (validate)="onFormationValidate()"\r\n (close)="onClose()"\r\n (save)="onFormationSave()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.FilingPreview) {\r\n <ontario-incorporation-preview-form\r\n [task]="taskData"\r\n [form]="previewForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n (next)="nextStep.emit()"\r\n (close)="close.emit()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.TermsAndConditions) {\r\n <terms-and-conditions\r\n (prev)="prevStep.emit()"\r\n (close)="close.emit()"\r\n (confirm)="onFormationSubmit($event)"\r\n />\r\n }\r\n}\r\n\r\n@if (isInitialReturnTask(task())) {\r\n @if (activeStep() === steps.Validate) {\r\n <ontario-update-maintain-delta-form\r\n [task]="$any(task())"\r\n [form]="deltaForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [prevData]="prevData()"\r\n [errors]="errors()"\r\n [isNote]="isNote()"\r\n (validate)="onInitialReturnValidate()"\r\n (close)="onClose()"\r\n (save)="onInitialReturnSave()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.FilingPreview) {\r\n <ontario-update-maintain-preview-form\r\n [task]="$any(task())"\r\n [form]="previewForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [errors]="errors()"\r\n (close)="close.emit()"\r\n (file)="nextStep.emit()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.TermsAndConditions) {\r\n <terms-and-conditions\r\n (prev)="prevStep.emit()"\r\n (close)="close.emit()"\r\n (confirm)="onIrSubmit($event)"\r\n />\r\n }\r\n}\r\n', styles: ["/* src/app/components/ontario/ontario.component.scss */\n:host {\n display: contents;\n}\n/*# sourceMappingURL=ontario.component.css.map */\n"] }]
|
|
82638
82682
|
}], () => [], null);
|
|
82639
82683
|
})();
|
|
82640
82684
|
(() => {
|
|
@@ -83739,39 +83783,39 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83739
83783
|
(() => {
|
|
83740
83784
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(SelectModalComponent, [{
|
|
83741
83785
|
type: Component,
|
|
83742
|
-
args: [{ standalone: true, selector: "add-documents-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, MatDialogModule, MatIconModule, TranslatePipe, MatCheckbox], template: `<div class="add-documents-modal"
|
|
83743
|
-
<div class="add-documents-modal-header"
|
|
83744
|
-
<h2 class="grey">{{ dialogData.title | translate }}</h2
|
|
83745
|
-
</div
|
|
83746
|
-
|
|
83747
|
-
<div class="add-documents-modal-list"
|
|
83748
|
-
@for (doc of dialogData.items; track doc) {
|
|
83749
|
-
<div (click)="toggleDocument(doc)" class="add-documents-modal-list-item"
|
|
83750
|
-
<mat-checkbox [checked]="isSelected(doc)"
|
|
83751
|
-
<span class="body-1-regular">{{ doc }}</span
|
|
83752
|
-
</div
|
|
83753
|
-
}
|
|
83754
|
-
</div
|
|
83755
|
-
|
|
83756
|
-
<div class="add-documents-modal-actions"
|
|
83757
|
-
<button
|
|
83758
|
-
mat-stroked-button mat-button
|
|
83759
|
-
(click)="closeModal()"
|
|
83760
|
-
|
|
83761
|
-
<span class="body-1-semibold">{{ 'Cancel' | translate }}</span
|
|
83762
|
-
</button
|
|
83763
|
-
|
|
83764
|
-
<button
|
|
83765
|
-
class="submit"
|
|
83766
|
-
mat-flat-button
|
|
83767
|
-
[disabled]="!hasSelection()"
|
|
83768
|
-
(click)="addSelectedDocuments()"
|
|
83769
|
-
|
|
83770
|
-
<span class="body-1-semibold">{{ dialogData.submitButton | translate }}</span
|
|
83771
|
-
</button
|
|
83772
|
-
</div
|
|
83773
|
-
|
|
83774
|
-
</div
|
|
83786
|
+
args: [{ standalone: true, selector: "add-documents-modal", changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatButtonModule, MatDialogModule, MatIconModule, TranslatePipe, MatCheckbox], template: `<div class="add-documents-modal">\r
|
|
83787
|
+
<div class="add-documents-modal-header">\r
|
|
83788
|
+
<h2 class="grey">{{ dialogData.title | translate }}</h2>\r
|
|
83789
|
+
</div>\r
|
|
83790
|
+
\r
|
|
83791
|
+
<div class="add-documents-modal-list">\r
|
|
83792
|
+
@for (doc of dialogData.items; track doc) {\r
|
|
83793
|
+
<div (click)="toggleDocument(doc)" class="add-documents-modal-list-item">\r
|
|
83794
|
+
<mat-checkbox [checked]="isSelected(doc)"/>\r
|
|
83795
|
+
<span class="body-1-regular">{{ doc }}</span>\r
|
|
83796
|
+
</div>\r
|
|
83797
|
+
}\r
|
|
83798
|
+
</div>\r
|
|
83799
|
+
\r
|
|
83800
|
+
<div class="add-documents-modal-actions">\r
|
|
83801
|
+
<button\r
|
|
83802
|
+
mat-stroked-button mat-button\r
|
|
83803
|
+
(click)="closeModal()"\r
|
|
83804
|
+
>\r
|
|
83805
|
+
<span class="body-1-semibold">{{ 'Cancel' | translate }}</span>\r
|
|
83806
|
+
</button>\r
|
|
83807
|
+
\r
|
|
83808
|
+
<button\r
|
|
83809
|
+
class="submit"\r
|
|
83810
|
+
mat-flat-button\r
|
|
83811
|
+
[disabled]="!hasSelection()"\r
|
|
83812
|
+
(click)="addSelectedDocuments()"\r
|
|
83813
|
+
>\r
|
|
83814
|
+
<span class="body-1-semibold">{{ dialogData.submitButton | translate }}</span>\r
|
|
83815
|
+
</button>\r
|
|
83816
|
+
</div>\r
|
|
83817
|
+
\r
|
|
83818
|
+
</div>\r
|
|
83775
83819
|
`, 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'] }]
|
|
83776
83820
|
}], null, null);
|
|
83777
83821
|
})();
|
|
@@ -83916,34 +83960,34 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
83916
83960
|
MatButton,
|
|
83917
83961
|
TranslatePipe,
|
|
83918
83962
|
MatIcon
|
|
83919
|
-
], template: `<div class="documents"
|
|
83920
|
-
<span class="body-1-regular">{{ 'Supporting documents relevant to the proposed name, including consent letters' | translate }}</span
|
|
83921
|
-
|
|
83922
|
-
@let selectedDocuments = this.selectedDocuments()
|
|
83923
|
-
@if (selectedDocuments.length) {
|
|
83924
|
-
<div class="documents-list"
|
|
83925
|
-
@for(document of selectedDocuments; track document) {
|
|
83926
|
-
<div class="documents-list-item body-1-regular"
|
|
83927
|
-
<mat-icon class="documents-list-item-document">description_outline</mat-icon
|
|
83928
|
-
<span class="body-1-regular">{{document}}</span
|
|
83929
|
-
|
|
83930
|
-
@if (!readonly()) {
|
|
83931
|
-
<div class="documents-list-icon-wrapper" (click)="removeDocument.emit(document)"
|
|
83932
|
-
<mat-icon class="documents-list-item-close">close</mat-icon
|
|
83933
|
-
</div
|
|
83934
|
-
}
|
|
83935
|
-
|
|
83936
|
-
</div
|
|
83937
|
-
}
|
|
83938
|
-
</div
|
|
83939
|
-
}
|
|
83940
|
-
|
|
83941
|
-
@if (!readonly()) {
|
|
83942
|
-
<button mat-stroked-button class="outlined" (click)="onAddDocuments()"
|
|
83943
|
-
<span class="body-1-semibold">{{ 'Add Supporting Documents' | translate }}</span
|
|
83944
|
-
</button
|
|
83945
|
-
}
|
|
83946
|
-
</div
|
|
83963
|
+
], template: `<div class="documents">\r
|
|
83964
|
+
<span class="body-1-regular">{{ 'Supporting documents relevant to the proposed name, including consent letters' | translate }}</span>\r
|
|
83965
|
+
\r
|
|
83966
|
+
@let selectedDocuments = this.selectedDocuments();\r
|
|
83967
|
+
@if (selectedDocuments.length) {\r
|
|
83968
|
+
<div class="documents-list">\r
|
|
83969
|
+
@for(document of selectedDocuments; track document) {\r
|
|
83970
|
+
<div class="documents-list-item body-1-regular">\r
|
|
83971
|
+
<mat-icon class="documents-list-item-document">description_outline</mat-icon>\r
|
|
83972
|
+
<span class="body-1-regular">{{document}}</span>\r
|
|
83973
|
+
\r
|
|
83974
|
+
@if (!readonly()) {\r
|
|
83975
|
+
<div class="documents-list-icon-wrapper" (click)="removeDocument.emit(document)">\r
|
|
83976
|
+
<mat-icon class="documents-list-item-close">close</mat-icon>\r
|
|
83977
|
+
</div>\r
|
|
83978
|
+
}\r
|
|
83979
|
+
\r
|
|
83980
|
+
</div>\r
|
|
83981
|
+
}\r
|
|
83982
|
+
</div>\r
|
|
83983
|
+
}\r
|
|
83984
|
+
\r
|
|
83985
|
+
@if (!readonly()) {\r
|
|
83986
|
+
<button mat-stroked-button class="outlined" (click)="onAddDocuments()">\r
|
|
83987
|
+
<span class="body-1-semibold">{{ 'Add Supporting Documents' | translate }}</span>\r
|
|
83988
|
+
</button>\r
|
|
83989
|
+
}\r
|
|
83990
|
+
</div>\r
|
|
83947
83991
|
`, styles: ["/* src/app/components/federal/components/documents/documents.component.scss */\n:host .documents {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 16px;\n}\n:host .documents-list {\n display: flex;\n flex-direction: column;\n gap: 4px;\n padding-left: 16px;\n}\n:host .documents-list-item {\n display: flex;\n align-items: center;\n gap: 8px;\n color: var(--filing-modal-color-grey);\n}\n:host .documents-list-item mat-icon {\n color: var(--filing-modal-color-grey);\n display: flex;\n align-items: center;\n}\n:host .documents-list-item-document {\n font-size: 24px;\n}\n:host .documents-list-item-close {\n font-size: 18px;\n height: 18px;\n width: 18px;\n line-height: 18px;\n}\n:host .documents-list-icon-wrapper {\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-left: 32px;\n}\n/*# sourceMappingURL=documents.component.css.map */\n"] }]
|
|
83948
83992
|
}], null, null);
|
|
83949
83993
|
})();
|
|
@@ -84769,246 +84813,246 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
84769
84813
|
TranslatePipe,
|
|
84770
84814
|
ReactiveFormsModule,
|
|
84771
84815
|
DatePipe
|
|
84772
|
-
], template: `<div class="incorporation-form"
|
|
84773
|
-
@if (isNote()) {
|
|
84774
|
-
<alert
|
|
84775
|
-
[type]="alertType.Info"
|
|
84776
|
-
title="Entity changed"
|
|
84777
|
-
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
|
|
84778
|
-
|
|
84779
|
-
}
|
|
84780
|
-
|
|
84781
|
-
@if (errors().length) {
|
|
84782
|
-
<alert
|
|
84783
|
-
title="The following issues need to be resolved before proceeding:"
|
|
84784
|
-
[content]="errors()"
|
|
84785
|
-
|
|
84786
|
-
}
|
|
84787
|
-
|
|
84788
|
-
<div class="incorporation-form-content"
|
|
84789
|
-
@let corporateName = getFormGroup(groups.CorporateName)
|
|
84790
|
-
|
|
84791
|
-
@if (corporateName) {
|
|
84792
|
-
<expandable-card
|
|
84793
|
-
[isValid]="sectionValidity['corporateName']"
|
|
84794
|
-
[isStatusIcon]="isStatusIcon()"
|
|
84795
|
-
[title]="groups.CorporateName"
|
|
84796
|
-
|
|
84797
|
-
<div class="incorporation-form-item"
|
|
84798
|
-
<filing-form-group
|
|
84799
|
-
[isSubmitted]="isSubmitted()"
|
|
84800
|
-
[form]="corporateName"
|
|
84801
|
-
[config]="incorporationFields"
|
|
84802
|
-
(visiblyValidChange)="onSectionValidChange('corporateName', $event)"
|
|
84803
|
-
|
|
84804
|
-
|
|
84805
|
-
@if (isNonPreapprovedNameType() || selectedDocuments().length) {
|
|
84806
|
-
<documents
|
|
84807
|
-
[documents]="documents()"
|
|
84808
|
-
[readonly]="isReadonly()"
|
|
84809
|
-
[selectedDocuments]="selectedDocuments()"
|
|
84810
|
-
(addDocuments)="addDocuments.emit($event)"
|
|
84811
|
-
(removeDocument)="removeDocument.emit($event)"
|
|
84812
|
-
|
|
84813
|
-
}
|
|
84814
|
-
</div
|
|
84815
|
-
</expandable-card
|
|
84816
|
-
}
|
|
84817
|
-
|
|
84818
|
-
@let articlesOfIncorporation = getFormGroup(groups.ArticlesOfIncorporation)
|
|
84819
|
-
|
|
84820
|
-
@if (articlesOfIncorporation) {
|
|
84821
|
-
<expandable-card
|
|
84822
|
-
[isValid]="sectionValidity['articles']"
|
|
84823
|
-
[isStatusIcon]="isStatusIcon()"
|
|
84824
|
-
[title]="groups.ArticlesOfIncorporation"
|
|
84825
|
-
|
|
84826
|
-
<div class="incorporation-form-item"
|
|
84827
|
-
<span
|
|
84828
|
-
class="body-1-regular black"
|
|
84829
|
-
[innerHTML]="directorsSubtitle()"
|
|
84830
|
-
></span
|
|
84831
|
-
|
|
84832
|
-
<filing-form-group
|
|
84833
|
-
[isSubmitted]="isSubmitted()"
|
|
84834
|
-
[form]="articlesOfIncorporation"
|
|
84835
|
-
[config]="articlesOfIncorporationFields"
|
|
84836
|
-
(visiblyValidChange)="onSectionValidChange('articles', $event)"
|
|
84837
|
-
|
|
84838
|
-
<div
|
|
84839
|
-
<span class="body-1-semibold dark-blue">{{ 'Incorporators' | translate }}</span
|
|
84840
|
-
|
|
84841
|
-
<ul class="incorporators-list"
|
|
84842
|
-
@for (
|
|
84843
|
-
incorporator of task()?._ext?._incorporators
|
|
84844
|
-
track incorporator.affiliationID
|
|
84845
|
-
) {
|
|
84846
|
-
<li class="body-1-regular grey"
|
|
84847
|
-
{{ getIncorporatorName(incorporator) }}
|
|
84848
|
-
</li
|
|
84849
|
-
}
|
|
84850
|
-
</ul
|
|
84851
|
-
</div
|
|
84852
|
-
|
|
84853
|
-
<span class="body-1-regular grey"
|
|
84854
|
-
>{{ 'Effective Date' | translate }}
|
|
84855
|
-
{{
|
|
84856
|
-
task()?._ext?._future_filing_date
|
|
84857
|
-
? (task()!._ext!._future_filing_date | date: "yyyy-MM-dd")
|
|
84858
|
-
: (today | date: "yyyy-MM-dd")
|
|
84859
|
-
}}</span
|
|
84860
|
-
|
|
84861
|
-
</div
|
|
84862
|
-
</expandable-card
|
|
84863
|
-
}
|
|
84864
|
-
|
|
84865
|
-
@let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress)
|
|
84866
|
-
|
|
84867
|
-
@if (registeredOfficeAddress) {
|
|
84868
|
-
<expandable-card
|
|
84869
|
-
[isValid]="sectionValidity['registeredOffice']"
|
|
84870
|
-
[isStatusIcon]="isStatusIcon()"
|
|
84871
|
-
[title]="groups.RegisteredOfficeAddress"
|
|
84872
|
-
|
|
84873
|
-
<div class="incorporation-form-item"
|
|
84874
|
-
<filing-form-group
|
|
84875
|
-
[isSubmitted]="isSubmitted()"
|
|
84876
|
-
[form]="registeredOfficeAddress"
|
|
84877
|
-
[config]="registeredOfficeAddressFields"
|
|
84878
|
-
(visiblyValidChange)="
|
|
84879
|
-
onSectionValidChange('registeredOffice', $event)
|
|
84880
|
-
"
|
|
84881
|
-
|
|
84882
|
-
</div
|
|
84883
|
-
</expandable-card
|
|
84884
|
-
}
|
|
84885
|
-
|
|
84886
|
-
@let directorsArray = getFormArray(groups.Directors)
|
|
84887
|
-
|
|
84888
|
-
@if (directorsArray && directorsArray.length) {
|
|
84889
|
-
@let directorsFormArray = getFormArray(groups.Directors)
|
|
84890
|
-
<expandable-list-card
|
|
84891
|
-
[isValid]="sectionValidity['directors']"
|
|
84892
|
-
[isSubmitted]="isSubmitted()"
|
|
84893
|
-
[areItemsOpen]="directorsArray.length <= initiallyOpenCardsCount"
|
|
84894
|
-
[fields]="directorsFields"
|
|
84895
|
-
[formArray]="directorsFormArray"
|
|
84896
|
-
[title]="groups.Directors"
|
|
84897
|
-
(visiblyValidChange)="onSectionValidChange('directors', $event)"
|
|
84898
|
-
|
|
84899
|
-
} @else {
|
|
84900
|
-
<expandable-card [title]="groups.Directors"
|
|
84901
|
-
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2
|
|
84902
|
-
</expandable-card
|
|
84903
|
-
}
|
|
84904
|
-
|
|
84905
|
-
@let significantControl = getFormGroup(groups.SignificantControl)
|
|
84906
|
-
@if (significantControl) {
|
|
84907
|
-
@let individualsWithSignificantControlArray
|
|
84908
|
-
getFormArray(groups.IndividualsWithSignificantControl)
|
|
84909
|
-
|
|
84910
|
-
@if (individualsWithSignificantControlArray) {
|
|
84911
|
-
<expandable-list-card
|
|
84912
|
-
[areItemsOpen]="
|
|
84913
|
-
individualsWithSignificantControlArray.length
|
|
84914
|
-
initiallyOpenCardsCount
|
|
84915
|
-
"
|
|
84916
|
-
[isValid]="
|
|
84917
|
-
sectionValidity['isc']
|
|
84918
|
-
sectionValidity['significantControl']
|
|
84919
|
-
"
|
|
84920
|
-
(remove)="onRemoveIndividualWithSignificantForm($event)"
|
|
84921
|
-
[removable]="!isReadonly()"
|
|
84922
|
-
[isSubmitted]="isSubmitted()"
|
|
84923
|
-
[isStatusIcon]="isStatusIcon()"
|
|
84924
|
-
[fields]="individualsWithSignificantControlFields"
|
|
84925
|
-
[formArray]="individualsWithSignificantControlArray"
|
|
84926
|
-
[title]="groups.IndividualsWithSignificantControl"
|
|
84927
|
-
(visiblyValidChange)="onSectionValidChange('isc', $event)"
|
|
84928
|
-
|
|
84929
|
-
@if (
|
|
84930
|
-
!isReadonly() && isAddIndividualWithSignificantControlAvailable()
|
|
84931
|
-
) {
|
|
84932
|
-
<button
|
|
84933
|
-
[disabled]="isAddIndividualWithSignificantControlDisabled()"
|
|
84934
|
-
slot="subtitle"
|
|
84935
|
-
mat-stroked-button
|
|
84936
|
-
mat-button
|
|
84937
|
-
(click)="addIndividualWithSignificantControl()"
|
|
84938
|
-
|
|
84939
|
-
<span class="body-1-semibold">{{
|
|
84940
|
-
"Add Individuals With Significant Control" | translate
|
|
84941
|
-
}}</span
|
|
84942
|
-
</button
|
|
84943
|
-
}
|
|
84944
|
-
|
|
84945
|
-
<div class="significant-control" slot="header-content"
|
|
84946
|
-
<filing-form-group
|
|
84947
|
-
[isSubmitted]="isSubmitted()"
|
|
84948
|
-
[form]="significantControl"
|
|
84949
|
-
[config]="significantControlFields"
|
|
84950
|
-
(visiblyValidChange)="
|
|
84951
|
-
onSectionValidChange('significantControl', $event)
|
|
84952
|
-
"
|
|
84953
|
-
|
|
84954
|
-
</div
|
|
84955
|
-
</expandable-list-card
|
|
84956
|
-
}
|
|
84957
|
-
}
|
|
84958
|
-
|
|
84959
|
-
@let inviteDirectorToBeFullAccessManager
|
|
84960
|
-
getFormGroup(groups.InviteDirectorToBeFullAccessManager)
|
|
84961
|
-
@if (inviteDirectorToBeFullAccessManager) {
|
|
84962
|
-
<expandable-card
|
|
84963
|
-
[isValid]="sectionValidity['inviteDirector']"
|
|
84964
|
-
[title]="groups.InviteDirectorToBeFullAccessManager"
|
|
84965
|
-
|
|
84966
|
-
<filing-form-group
|
|
84967
|
-
[isSubmitted]="isSubmitted()"
|
|
84968
|
-
[form]="inviteDirectorToBeFullAccessManager"
|
|
84969
|
-
[config]="federalFormationFormInviteDirectorsToBeManagersControl"
|
|
84970
|
-
(visiblyValidChange)="onSectionValidChange('inviteDirector', $event)"
|
|
84971
|
-
|
|
84972
|
-
</expandable-card
|
|
84973
|
-
}
|
|
84974
|
-
|
|
84975
|
-
@let extraProvincialLicensesArray
|
|
84976
|
-
getFormArray(groups.ExtraProvincialRegistrations)
|
|
84977
|
-
@let extraProvincialLicensesControlsLength
|
|
84978
|
-
extraProvincialLicensesArray?.length
|
|
84979
|
-
|
|
84980
|
-
@if (extraProvincialLicensesControlsLength) {
|
|
84981
|
-
<expandable-list-card
|
|
84982
|
-
[areItemsOpen]="extraProvincialLicensesControlsLength === 1"
|
|
84983
|
-
[isValid]="sectionValidity['epl']"
|
|
84984
|
-
[isSubmitted]="isSubmitted()"
|
|
84985
|
-
[isStatusIcon]="isStatusIcon()"
|
|
84986
|
-
[fields]="extraProvincialLicensesFields"
|
|
84987
|
-
[formArray]="extraProvincialLicensesArray"
|
|
84988
|
-
[title]="groups.ExtraProvincialRegistrations"
|
|
84989
|
-
(visiblyValidChange)="onSectionValidChange('epl', $event)"
|
|
84990
|
-
|
|
84991
|
-
}
|
|
84992
|
-
|
|
84993
|
-
@let contactForm = getFormGroup(groups.Contact)
|
|
84994
|
-
@if (contactForm) {
|
|
84995
|
-
<expandable-card
|
|
84996
|
-
[isStatusIcon]="isStatusIcon()"
|
|
84997
|
-
[isValid]="sectionValidity['contact']"
|
|
84998
|
-
[title]="groups.Contact"
|
|
84999
|
-
|
|
85000
|
-
<filing-form-group
|
|
85001
|
-
[isSubmitted]="isSubmitted()"
|
|
85002
|
-
[form]="contactForm"
|
|
85003
|
-
[config]="contactControl"
|
|
85004
|
-
(visiblyValidChange)="onSectionValidChange('contact', $event)"
|
|
85005
|
-
|
|
85006
|
-
</expandable-card
|
|
85007
|
-
}
|
|
85008
|
-
|
|
85009
|
-
<ng-content></ng-content
|
|
85010
|
-
</div
|
|
85011
|
-
</div
|
|
84816
|
+
], template: `<div class="incorporation-form">\r
|
|
84817
|
+
@if (isNote()) {\r
|
|
84818
|
+
<alert\r
|
|
84819
|
+
[type]="alertType.Info"\r
|
|
84820
|
+
title="Entity changed"\r
|
|
84821
|
+
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
|
|
84822
|
+
/>\r
|
|
84823
|
+
}\r
|
|
84824
|
+
\r
|
|
84825
|
+
@if (errors().length) {\r
|
|
84826
|
+
<alert\r
|
|
84827
|
+
title="The following issues need to be resolved before proceeding:"\r
|
|
84828
|
+
[content]="errors()"\r
|
|
84829
|
+
/>\r
|
|
84830
|
+
}\r
|
|
84831
|
+
\r
|
|
84832
|
+
<div class="incorporation-form-content">\r
|
|
84833
|
+
@let corporateName = getFormGroup(groups.CorporateName);\r
|
|
84834
|
+
\r
|
|
84835
|
+
@if (corporateName) {\r
|
|
84836
|
+
<expandable-card\r
|
|
84837
|
+
[isValid]="sectionValidity['corporateName']"\r
|
|
84838
|
+
[isStatusIcon]="isStatusIcon()"\r
|
|
84839
|
+
[title]="groups.CorporateName"\r
|
|
84840
|
+
>\r
|
|
84841
|
+
<div class="incorporation-form-item">\r
|
|
84842
|
+
<filing-form-group\r
|
|
84843
|
+
[isSubmitted]="isSubmitted()"\r
|
|
84844
|
+
[form]="corporateName"\r
|
|
84845
|
+
[config]="incorporationFields"\r
|
|
84846
|
+
(visiblyValidChange)="onSectionValidChange('corporateName', $event)"\r
|
|
84847
|
+
/>\r
|
|
84848
|
+
\r
|
|
84849
|
+
@if (isNonPreapprovedNameType() || selectedDocuments().length) {\r
|
|
84850
|
+
<documents\r
|
|
84851
|
+
[documents]="documents()"\r
|
|
84852
|
+
[readonly]="isReadonly()"\r
|
|
84853
|
+
[selectedDocuments]="selectedDocuments()"\r
|
|
84854
|
+
(addDocuments)="addDocuments.emit($event)"\r
|
|
84855
|
+
(removeDocument)="removeDocument.emit($event)"\r
|
|
84856
|
+
/>\r
|
|
84857
|
+
}\r
|
|
84858
|
+
</div>\r
|
|
84859
|
+
</expandable-card>\r
|
|
84860
|
+
}\r
|
|
84861
|
+
\r
|
|
84862
|
+
@let articlesOfIncorporation = getFormGroup(groups.ArticlesOfIncorporation);\r
|
|
84863
|
+
\r
|
|
84864
|
+
@if (articlesOfIncorporation) {\r
|
|
84865
|
+
<expandable-card\r
|
|
84866
|
+
[isValid]="sectionValidity['articles']"\r
|
|
84867
|
+
[isStatusIcon]="isStatusIcon()"\r
|
|
84868
|
+
[title]="groups.ArticlesOfIncorporation"\r
|
|
84869
|
+
>\r
|
|
84870
|
+
<div class="incorporation-form-item">\r
|
|
84871
|
+
<span\r
|
|
84872
|
+
class="body-1-regular black"\r
|
|
84873
|
+
[innerHTML]="directorsSubtitle()"\r
|
|
84874
|
+
></span>\r
|
|
84875
|
+
\r
|
|
84876
|
+
<filing-form-group\r
|
|
84877
|
+
[isSubmitted]="isSubmitted()"\r
|
|
84878
|
+
[form]="articlesOfIncorporation"\r
|
|
84879
|
+
[config]="articlesOfIncorporationFields"\r
|
|
84880
|
+
(visiblyValidChange)="onSectionValidChange('articles', $event)"\r
|
|
84881
|
+
/>\r
|
|
84882
|
+
<div>\r
|
|
84883
|
+
<span class="body-1-semibold dark-blue">{{ 'Incorporators' | translate }}</span>\r
|
|
84884
|
+
\r
|
|
84885
|
+
<ul class="incorporators-list">\r
|
|
84886
|
+
@for (\r
|
|
84887
|
+
incorporator of task()?._ext?._incorporators;\r
|
|
84888
|
+
track incorporator.affiliationID\r
|
|
84889
|
+
) {\r
|
|
84890
|
+
<li class="body-1-regular grey">\r
|
|
84891
|
+
{{ getIncorporatorName(incorporator) }}\r
|
|
84892
|
+
</li>\r
|
|
84893
|
+
}\r
|
|
84894
|
+
</ul>\r
|
|
84895
|
+
</div>\r
|
|
84896
|
+
\r
|
|
84897
|
+
<span class="body-1-regular grey"\r
|
|
84898
|
+
>{{ 'Effective Date' | translate }}:\r
|
|
84899
|
+
{{\r
|
|
84900
|
+
task()?._ext?._future_filing_date\r
|
|
84901
|
+
? (task()!._ext!._future_filing_date | date: "yyyy-MM-dd")\r
|
|
84902
|
+
: (today | date: "yyyy-MM-dd")\r
|
|
84903
|
+
}}</span\r
|
|
84904
|
+
>\r
|
|
84905
|
+
</div>\r
|
|
84906
|
+
</expandable-card>\r
|
|
84907
|
+
}\r
|
|
84908
|
+
\r
|
|
84909
|
+
@let registeredOfficeAddress = getFormGroup(groups.RegisteredOfficeAddress);\r
|
|
84910
|
+
\r
|
|
84911
|
+
@if (registeredOfficeAddress) {\r
|
|
84912
|
+
<expandable-card\r
|
|
84913
|
+
[isValid]="sectionValidity['registeredOffice']"\r
|
|
84914
|
+
[isStatusIcon]="isStatusIcon()"\r
|
|
84915
|
+
[title]="groups.RegisteredOfficeAddress"\r
|
|
84916
|
+
>\r
|
|
84917
|
+
<div class="incorporation-form-item">\r
|
|
84918
|
+
<filing-form-group\r
|
|
84919
|
+
[isSubmitted]="isSubmitted()"\r
|
|
84920
|
+
[form]="registeredOfficeAddress"\r
|
|
84921
|
+
[config]="registeredOfficeAddressFields"\r
|
|
84922
|
+
(visiblyValidChange)="\r
|
|
84923
|
+
onSectionValidChange('registeredOffice', $event)\r
|
|
84924
|
+
"\r
|
|
84925
|
+
/>\r
|
|
84926
|
+
</div>\r
|
|
84927
|
+
</expandable-card>\r
|
|
84928
|
+
}\r
|
|
84929
|
+
\r
|
|
84930
|
+
@let directorsArray = getFormArray(groups.Directors);\r
|
|
84931
|
+
\r
|
|
84932
|
+
@if (directorsArray && directorsArray.length) {\r
|
|
84933
|
+
@let directorsFormArray = getFormArray(groups.Directors);\r
|
|
84934
|
+
<expandable-list-card\r
|
|
84935
|
+
[isValid]="sectionValidity['directors']"\r
|
|
84936
|
+
[isSubmitted]="isSubmitted()"\r
|
|
84937
|
+
[areItemsOpen]="directorsArray.length <= initiallyOpenCardsCount"\r
|
|
84938
|
+
[fields]="directorsFields"\r
|
|
84939
|
+
[formArray]="directorsFormArray"\r
|
|
84940
|
+
[title]="groups.Directors"\r
|
|
84941
|
+
(visiblyValidChange)="onSectionValidChange('directors', $event)"\r
|
|
84942
|
+
/>\r
|
|
84943
|
+
} @else {\r
|
|
84944
|
+
<expandable-card [title]="groups.Directors">\r
|
|
84945
|
+
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
|
|
84946
|
+
</expandable-card>\r
|
|
84947
|
+
}\r
|
|
84948
|
+
\r
|
|
84949
|
+
@let significantControl = getFormGroup(groups.SignificantControl);\r
|
|
84950
|
+
@if (significantControl) {\r
|
|
84951
|
+
@let individualsWithSignificantControlArray =\r
|
|
84952
|
+
getFormArray(groups.IndividualsWithSignificantControl);\r
|
|
84953
|
+
\r
|
|
84954
|
+
@if (individualsWithSignificantControlArray) {\r
|
|
84955
|
+
<expandable-list-card\r
|
|
84956
|
+
[areItemsOpen]="\r
|
|
84957
|
+
individualsWithSignificantControlArray.length <=\r
|
|
84958
|
+
initiallyOpenCardsCount\r
|
|
84959
|
+
"\r
|
|
84960
|
+
[isValid]="\r
|
|
84961
|
+
sectionValidity['isc'] &&\r
|
|
84962
|
+
sectionValidity['significantControl']\r
|
|
84963
|
+
"\r
|
|
84964
|
+
(remove)="onRemoveIndividualWithSignificantForm($event)"\r
|
|
84965
|
+
[removable]="!isReadonly()"\r
|
|
84966
|
+
[isSubmitted]="isSubmitted()"\r
|
|
84967
|
+
[isStatusIcon]="isStatusIcon()"\r
|
|
84968
|
+
[fields]="individualsWithSignificantControlFields"\r
|
|
84969
|
+
[formArray]="individualsWithSignificantControlArray"\r
|
|
84970
|
+
[title]="groups.IndividualsWithSignificantControl"\r
|
|
84971
|
+
(visiblyValidChange)="onSectionValidChange('isc', $event)"\r
|
|
84972
|
+
>\r
|
|
84973
|
+
@if (\r
|
|
84974
|
+
!isReadonly() && isAddIndividualWithSignificantControlAvailable()\r
|
|
84975
|
+
) {\r
|
|
84976
|
+
<button\r
|
|
84977
|
+
[disabled]="isAddIndividualWithSignificantControlDisabled()"\r
|
|
84978
|
+
slot="subtitle"\r
|
|
84979
|
+
mat-stroked-button\r
|
|
84980
|
+
mat-button\r
|
|
84981
|
+
(click)="addIndividualWithSignificantControl()"\r
|
|
84982
|
+
>\r
|
|
84983
|
+
<span class="body-1-semibold">{{\r
|
|
84984
|
+
"Add Individuals With Significant Control" | translate\r
|
|
84985
|
+
}}</span>\r
|
|
84986
|
+
</button>\r
|
|
84987
|
+
}\r
|
|
84988
|
+
\r
|
|
84989
|
+
<div class="significant-control" slot="header-content">\r
|
|
84990
|
+
<filing-form-group\r
|
|
84991
|
+
[isSubmitted]="isSubmitted()"\r
|
|
84992
|
+
[form]="significantControl"\r
|
|
84993
|
+
[config]="significantControlFields"\r
|
|
84994
|
+
(visiblyValidChange)="\r
|
|
84995
|
+
onSectionValidChange('significantControl', $event)\r
|
|
84996
|
+
"\r
|
|
84997
|
+
/>\r
|
|
84998
|
+
</div>\r
|
|
84999
|
+
</expandable-list-card>\r
|
|
85000
|
+
}\r
|
|
85001
|
+
}\r
|
|
85002
|
+
\r
|
|
85003
|
+
@let inviteDirectorToBeFullAccessManager =\r
|
|
85004
|
+
getFormGroup(groups.InviteDirectorToBeFullAccessManager);\r
|
|
85005
|
+
@if (inviteDirectorToBeFullAccessManager) {\r
|
|
85006
|
+
<expandable-card\r
|
|
85007
|
+
[isValid]="sectionValidity['inviteDirector']"\r
|
|
85008
|
+
[title]="groups.InviteDirectorToBeFullAccessManager"\r
|
|
85009
|
+
>\r
|
|
85010
|
+
<filing-form-group\r
|
|
85011
|
+
[isSubmitted]="isSubmitted()"\r
|
|
85012
|
+
[form]="inviteDirectorToBeFullAccessManager"\r
|
|
85013
|
+
[config]="federalFormationFormInviteDirectorsToBeManagersControl"\r
|
|
85014
|
+
(visiblyValidChange)="onSectionValidChange('inviteDirector', $event)"\r
|
|
85015
|
+
/>\r
|
|
85016
|
+
</expandable-card>\r
|
|
85017
|
+
}\r
|
|
85018
|
+
\r
|
|
85019
|
+
@let extraProvincialLicensesArray =\r
|
|
85020
|
+
getFormArray(groups.ExtraProvincialRegistrations);\r
|
|
85021
|
+
@let extraProvincialLicensesControlsLength =\r
|
|
85022
|
+
extraProvincialLicensesArray?.length;\r
|
|
85023
|
+
\r
|
|
85024
|
+
@if (extraProvincialLicensesControlsLength) {\r
|
|
85025
|
+
<expandable-list-card\r
|
|
85026
|
+
[areItemsOpen]="extraProvincialLicensesControlsLength === 1"\r
|
|
85027
|
+
[isValid]="sectionValidity['epl']"\r
|
|
85028
|
+
[isSubmitted]="isSubmitted()"\r
|
|
85029
|
+
[isStatusIcon]="isStatusIcon()"\r
|
|
85030
|
+
[fields]="extraProvincialLicensesFields"\r
|
|
85031
|
+
[formArray]="extraProvincialLicensesArray"\r
|
|
85032
|
+
[title]="groups.ExtraProvincialRegistrations"\r
|
|
85033
|
+
(visiblyValidChange)="onSectionValidChange('epl', $event)"\r
|
|
85034
|
+
/>\r
|
|
85035
|
+
}\r
|
|
85036
|
+
\r
|
|
85037
|
+
@let contactForm = getFormGroup(groups.Contact);\r
|
|
85038
|
+
@if (contactForm) {\r
|
|
85039
|
+
<expandable-card\r
|
|
85040
|
+
[isStatusIcon]="isStatusIcon()"\r
|
|
85041
|
+
[isValid]="sectionValidity['contact']"\r
|
|
85042
|
+
[title]="groups.Contact"\r
|
|
85043
|
+
>\r
|
|
85044
|
+
<filing-form-group\r
|
|
85045
|
+
[isSubmitted]="isSubmitted()"\r
|
|
85046
|
+
[form]="contactForm"\r
|
|
85047
|
+
[config]="contactControl"\r
|
|
85048
|
+
(visiblyValidChange)="onSectionValidChange('contact', $event)"\r
|
|
85049
|
+
/>\r
|
|
85050
|
+
</expandable-card>\r
|
|
85051
|
+
}\r
|
|
85052
|
+
\r
|
|
85053
|
+
<ng-content></ng-content>\r
|
|
85054
|
+
</div>\r
|
|
85055
|
+
</div>\r
|
|
85012
85056
|
`, styles: ["/* src/app/components/federal/incorporation/federal-incorporation-form/federal-incorporation-form.component.scss */\n:host {\n display: flex;\n flex-direction: column;\n flex: 1;\n min-height: 0;\n}\n:host .incorporation-form {\n display: flex;\n height: 100%;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n flex: 1;\n overflow: auto;\n min-height: 0;\n}\n:host .incorporation-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-form .significant-control {\n padding: 0 16px;\n}\n:host .incorporators-list {\n margin: 8px;\n padding-inline-start: 25px;\n}\n/*# sourceMappingURL=federal-incorporation-form.component.css.map */\n"] }]
|
|
85013
85057
|
}], () => [], null);
|
|
85014
85058
|
})();
|
|
@@ -85130,39 +85174,39 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85130
85174
|
MatButton,
|
|
85131
85175
|
TranslatePipe,
|
|
85132
85176
|
FederalIncorporationFormComponent
|
|
85133
|
-
], template: `<div class="incorporation-delta-form"
|
|
85134
|
-
<federal-incorporation-form
|
|
85135
|
-
class="incorporation-delta-form-content"
|
|
85136
|
-
[form]="form()"
|
|
85137
|
-
[task]="task()"
|
|
85138
|
-
[errors]="combinedErrors()"
|
|
85139
|
-
[isNote]="isNote()"
|
|
85140
|
-
[isSubmitted]="submitted()"
|
|
85141
|
-
[documents]="documents()"
|
|
85142
|
-
[selectedDocuments]="selectedDocuments()"
|
|
85143
|
-
(addDocuments)="addDocuments.emit($event)"
|
|
85144
|
-
(removeDocument)="removeDocument.emit($event)"
|
|
85145
|
-
(visiblyValidChange)="onVisiblyValidChange($event)"
|
|
85146
|
-
|
|
85147
|
-
|
|
85148
|
-
<div class="incorporation-delta-form-actions"
|
|
85149
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
85150
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
85151
|
-
</button
|
|
85152
|
-
<button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button
|
|
85153
|
-
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span
|
|
85154
|
-
</button
|
|
85155
|
-
<button
|
|
85156
|
-
class="submit"
|
|
85157
|
-
color="primary"
|
|
85158
|
-
mat-flat-button
|
|
85159
|
-
[disabled]="actionsDisabled()"
|
|
85160
|
-
(click)="onValidate()"
|
|
85161
|
-
|
|
85162
|
-
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span
|
|
85163
|
-
</button
|
|
85164
|
-
</div
|
|
85165
|
-
</div
|
|
85177
|
+
], template: `<div class="incorporation-delta-form">\r
|
|
85178
|
+
<federal-incorporation-form\r
|
|
85179
|
+
class="incorporation-delta-form-content"\r
|
|
85180
|
+
[form]="form()"\r
|
|
85181
|
+
[task]="task()"\r
|
|
85182
|
+
[errors]="combinedErrors()"\r
|
|
85183
|
+
[isNote]="isNote()"\r
|
|
85184
|
+
[isSubmitted]="submitted()"\r
|
|
85185
|
+
[documents]="documents()"\r
|
|
85186
|
+
[selectedDocuments]="selectedDocuments()"\r
|
|
85187
|
+
(addDocuments)="addDocuments.emit($event)"\r
|
|
85188
|
+
(removeDocument)="removeDocument.emit($event)"\r
|
|
85189
|
+
(visiblyValidChange)="onVisiblyValidChange($event)"\r
|
|
85190
|
+
/>\r
|
|
85191
|
+
\r
|
|
85192
|
+
<div class="incorporation-delta-form-actions">\r
|
|
85193
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
85194
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
85195
|
+
</button>\r
|
|
85196
|
+
<button (click)="save.emit()" [disabled]="actionsDisabled()" mat-stroked-button mat-button>\r
|
|
85197
|
+
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
|
|
85198
|
+
</button>\r
|
|
85199
|
+
<button\r
|
|
85200
|
+
class="submit"\r
|
|
85201
|
+
color="primary"\r
|
|
85202
|
+
mat-flat-button\r
|
|
85203
|
+
[disabled]="actionsDisabled()"\r
|
|
85204
|
+
(click)="onValidate()"\r
|
|
85205
|
+
>\r
|
|
85206
|
+
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
|
|
85207
|
+
</button>\r
|
|
85208
|
+
</div>\r
|
|
85209
|
+
</div>\r
|
|
85166
85210
|
`, styles: ["/* src/app/components/federal/incorporation/steps/delta/federal-incorporation-delta-form.component.scss */\n:host .incorporation-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-delta-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n overflow: auto;\n}\n:host .incorporation-delta-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-delta-form-errors {\n padding: 0 16px;\n}\n:host .incorporation-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-delta-form-actions button {\n margin: 0;\n}\n:host .incorporation-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=federal-incorporation-delta-form.component.css.map */\n"] }]
|
|
85167
85211
|
}], null, null);
|
|
85168
85212
|
})();
|
|
@@ -85281,39 +85325,39 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85281
85325
|
FederalIncorporationFormComponent,
|
|
85282
85326
|
ExpandableCardComponent,
|
|
85283
85327
|
FilingFormGroupComponent
|
|
85284
|
-
], template: `<div class="incorporation-delta-form"
|
|
85285
|
-
<federal-incorporation-form
|
|
85286
|
-
class="incorporation-delta-form-content"
|
|
85287
|
-
[form]="form()"
|
|
85288
|
-
[task]="task()"
|
|
85289
|
-
[errors]="errors()"
|
|
85290
|
-
[selectedDocuments]="selectedDocuments()"
|
|
85291
|
-
[isStatusIcon]="false"
|
|
85292
|
-
[isReadonly]="true"
|
|
85293
|
-
|
|
85294
|
-
@let signatoryInformation = getFormGroup(groups.Signatory)
|
|
85295
|
-
|
|
85296
|
-
<expandable-card [isExpandable]="false"
|
|
85297
|
-
<filing-form-group [isSubmitted]="true" [form]="signatoryInformation" [config]="signatoryFields"
|
|
85298
|
-
</expandable-card
|
|
85299
|
-
|
|
85300
|
-
</federal-incorporation-form
|
|
85301
|
-
|
|
85302
|
-
<div class="incorporation-delta-form-actions"
|
|
85303
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
85304
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
85305
|
-
</button
|
|
85306
|
-
<button
|
|
85307
|
-
class="submit"
|
|
85308
|
-
color="primary"
|
|
85309
|
-
mat-flat-button
|
|
85310
|
-
[disabled]="actionsDisabled() || !getFormGroup(groups.Signatory).get(controls.Signatory)?.value"
|
|
85311
|
-
(click)="file.emit()"
|
|
85312
|
-
|
|
85313
|
-
<span class="body-1-semibold">{{ 'File' | translate }}</span
|
|
85314
|
-
</button
|
|
85315
|
-
</div
|
|
85316
|
-
</div
|
|
85328
|
+
], template: `<div class="incorporation-delta-form">\r
|
|
85329
|
+
<federal-incorporation-form\r
|
|
85330
|
+
class="incorporation-delta-form-content"\r
|
|
85331
|
+
[form]="form()"\r
|
|
85332
|
+
[task]="task()"\r
|
|
85333
|
+
[errors]="errors()"\r
|
|
85334
|
+
[selectedDocuments]="selectedDocuments()"\r
|
|
85335
|
+
[isStatusIcon]="false"\r
|
|
85336
|
+
[isReadonly]="true"\r
|
|
85337
|
+
>\r
|
|
85338
|
+
@let signatoryInformation = getFormGroup(groups.Signatory);\r
|
|
85339
|
+
\r
|
|
85340
|
+
<expandable-card [isExpandable]="false">\r
|
|
85341
|
+
<filing-form-group [isSubmitted]="true" [form]="signatoryInformation" [config]="signatoryFields"/>\r
|
|
85342
|
+
</expandable-card>\r
|
|
85343
|
+
\r
|
|
85344
|
+
</federal-incorporation-form>\r
|
|
85345
|
+
\r
|
|
85346
|
+
<div class="incorporation-delta-form-actions">\r
|
|
85347
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
85348
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
85349
|
+
</button>\r
|
|
85350
|
+
<button\r
|
|
85351
|
+
class="submit"\r
|
|
85352
|
+
color="primary"\r
|
|
85353
|
+
mat-flat-button\r
|
|
85354
|
+
[disabled]="actionsDisabled() || !getFormGroup(groups.Signatory).get(controls.Signatory)?.value"\r
|
|
85355
|
+
(click)="file.emit()"\r
|
|
85356
|
+
>\r
|
|
85357
|
+
<span class="body-1-semibold">{{ 'File' | translate }}</span>\r
|
|
85358
|
+
</button>\r
|
|
85359
|
+
</div>\r
|
|
85360
|
+
</div>\r
|
|
85317
85361
|
`, styles: ["/* src/app/components/federal/incorporation/steps/preview/federal-incorporation-preview-form.component.scss */\n:host .incorporation-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .incorporation-delta-form-content {\n display: flex;\n flex-direction: column;\n gap: 16px;\n overflow: auto;\n}\n:host .incorporation-delta-form-item {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .incorporation-delta-form-errors {\n padding: 0 16px;\n}\n:host .incorporation-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .incorporation-delta-form-actions button {\n margin: 0;\n}\n/*# sourceMappingURL=federal-incorporation-preview-form.component.css.map */\n"] }]
|
|
85318
85362
|
}], () => [], null);
|
|
85319
85363
|
})();
|
|
@@ -85945,139 +85989,139 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
85945
85989
|
ReactiveFormsModule,
|
|
85946
85990
|
MatButton,
|
|
85947
85991
|
TranslatePipe
|
|
85948
|
-
], template: `<div class="federal-update-maintain-form"
|
|
85949
|
-
@if (isNote()) {
|
|
85950
|
-
<alert
|
|
85951
|
-
[type]="alertType.Info"
|
|
85952
|
-
title="Entity changed"
|
|
85953
|
-
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."
|
|
85954
|
-
|
|
85955
|
-
}
|
|
85956
|
-
|
|
85957
|
-
@if (errors().length) {
|
|
85958
|
-
<alert
|
|
85959
|
-
title="The following issues need to be resolved before proceeding:"
|
|
85960
|
-
[content]="errors()"
|
|
85961
|
-
|
|
85962
|
-
}
|
|
85963
|
-
|
|
85964
|
-
<div class="federal-update-maintain-form-content"
|
|
85965
|
-
@let corporationDetails = getFormGroup(groups.CorporationDetails)
|
|
85966
|
-
@if (corporationDetails) {
|
|
85967
|
-
<expandable-card
|
|
85968
|
-
[isValid]="sectionValidity['corporationDetails']"
|
|
85969
|
-
[title]="groups.CorporationDetails"
|
|
85970
|
-
|
|
85971
|
-
<filing-form-group
|
|
85972
|
-
[isSubmitted]="isSubmitted()"
|
|
85973
|
-
[form]="corporationDetails"
|
|
85974
|
-
[config]="corporationDetailsFields"
|
|
85975
|
-
(visiblyValidChange)="
|
|
85976
|
-
onSectionValidChange('corporationDetails', $event)
|
|
85977
|
-
"
|
|
85978
|
-
|
|
85979
|
-
</expandable-card
|
|
85980
|
-
}
|
|
85981
|
-
|
|
85982
|
-
@let directorsArray = getFormArray(groups.Directors)
|
|
85983
|
-
@if (directorsArray && directorsArray.length) {
|
|
85984
|
-
<expandable-list-card
|
|
85985
|
-
[isValid]="sectionValidity['directors']"
|
|
85986
|
-
[isSubmitted]="isSubmitted()"
|
|
85987
|
-
[fields]="directorsFields"
|
|
85988
|
-
[formArray]="directorsArray"
|
|
85989
|
-
[labelKey]="controls.AffiliationName"
|
|
85990
|
-
[title]="groups.Directors"
|
|
85991
|
-
(visiblyValidChange)="onSectionValidChange('directors', $event)"
|
|
85992
|
-
|
|
85993
|
-
} @else {
|
|
85994
|
-
<expandable-card [title]="groups.Directors"
|
|
85995
|
-
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2
|
|
85996
|
-
</expandable-card
|
|
85997
|
-
}
|
|
85998
|
-
|
|
85999
|
-
@let annualReturn = getFormGroup(groups.AnnualReturn)
|
|
86000
|
-
@if (annualReturn) {
|
|
86001
|
-
<expandable-card
|
|
86002
|
-
[isValid]="sectionValidity['annualReturn']"
|
|
86003
|
-
[title]="groups.AnnualReturn"
|
|
86004
|
-
|
|
86005
|
-
<filing-form-group
|
|
86006
|
-
[isSubmitted]="isSubmitted()"
|
|
86007
|
-
[form]="annualReturn"
|
|
86008
|
-
[config]="annualReturnFields"
|
|
86009
|
-
(visiblyValidChange)="onSectionValidChange('annualReturn', $event)"
|
|
86010
|
-
|
|
86011
|
-
</expandable-card
|
|
86012
|
-
}
|
|
86013
|
-
|
|
86014
|
-
@let significantControl = getFormGroup(groups.SignificantControl)
|
|
86015
|
-
@if (significantControl) {
|
|
86016
|
-
@let individualsArray
|
|
86017
|
-
getFormArray(groups.IndividualsWithSignificantControl)
|
|
86018
|
-
@if (individualsArray) {
|
|
86019
|
-
<expandable-list-card
|
|
86020
|
-
[areItemsOpen]="isIndividualsWithSignificantControlOpen()"
|
|
86021
|
-
[isValid]="
|
|
86022
|
-
sectionValidity['isc'] && sectionValidity['significantControl']
|
|
86023
|
-
"
|
|
86024
|
-
[isSubmitted]="isSubmitted()"
|
|
86025
|
-
[isStatusIcon]="true"
|
|
86026
|
-
[removable]="!readonly()"
|
|
86027
|
-
[fields]="individualsWithSignificantControlFields()"
|
|
86028
|
-
[formArray]="individualsArray"
|
|
86029
|
-
[labelKey]="controls.AffiliationName"
|
|
86030
|
-
[title]="groups.IndividualsWithSignificantControl"
|
|
86031
|
-
(remove)="onRemoveIndividualWithSignificantForm($event)"
|
|
86032
|
-
(visiblyValidChange)="onSectionValidChange('isc', $event)"
|
|
86033
|
-
|
|
86034
|
-
@if (
|
|
86035
|
-
!readonly() && isAddIndividualWithSignificantControlAvailable()
|
|
86036
|
-
) {
|
|
86037
|
-
<button
|
|
86038
|
-
[disabled]="isAddIndividualWithSignificantControlDisabled()"
|
|
86039
|
-
slot="subtitle"
|
|
86040
|
-
mat-stroked-button
|
|
86041
|
-
mat-button
|
|
86042
|
-
(click)="addIndividualWithSignificantControl()"
|
|
86043
|
-
|
|
86044
|
-
<span class="body-1-semibold">{{
|
|
86045
|
-
"Add Individuals With Significant Control" | translate
|
|
86046
|
-
}}</span
|
|
86047
|
-
</button
|
|
86048
|
-
}
|
|
86049
|
-
|
|
86050
|
-
<div class="card-header-content" slot="header-content"
|
|
86051
|
-
<filing-form-group
|
|
86052
|
-
[isSubmitted]="isSubmitted()"
|
|
86053
|
-
[form]="significantControl"
|
|
86054
|
-
[config]="significantControlFields"
|
|
86055
|
-
(visiblyValidChange)="
|
|
86056
|
-
onSectionValidChange('significantControl', $event)
|
|
86057
|
-
"
|
|
86058
|
-
|
|
86059
|
-
</div
|
|
86060
|
-
</expandable-list-card
|
|
86061
|
-
}
|
|
86062
|
-
}
|
|
86063
|
-
|
|
86064
|
-
@let contact = getFormGroup(groups.Contact)
|
|
86065
|
-
@if (contact) {
|
|
86066
|
-
<expandable-card
|
|
86067
|
-
[isStatusIcon]="!readonly()"
|
|
86068
|
-
[isValid]="sectionValidity['contact']"
|
|
86069
|
-
[title]="groups.Contact"
|
|
86070
|
-
|
|
86071
|
-
<filing-form-group
|
|
86072
|
-
[isSubmitted]="isSubmitted()"
|
|
86073
|
-
[form]="contact"
|
|
86074
|
-
[config]="contactControl()"
|
|
86075
|
-
(visiblyValidChange)="onSectionValidChange('contact', $event)"
|
|
86076
|
-
|
|
86077
|
-
</expandable-card
|
|
86078
|
-
}
|
|
86079
|
-
</div
|
|
86080
|
-
</div
|
|
85992
|
+
], template: `<div class="federal-update-maintain-form">\r
|
|
85993
|
+
@if (isNote()) {\r
|
|
85994
|
+
<alert\r
|
|
85995
|
+
[type]="alertType.Info"\r
|
|
85996
|
+
title="Entity changed"\r
|
|
85997
|
+
content="A new draft needs to be generated as the Entity was changed since the last draft was produced."\r
|
|
85998
|
+
/>\r
|
|
85999
|
+
}\r
|
|
86000
|
+
\r
|
|
86001
|
+
@if (errors().length) {\r
|
|
86002
|
+
<alert\r
|
|
86003
|
+
title="The following issues need to be resolved before proceeding:"\r
|
|
86004
|
+
[content]="errors()"\r
|
|
86005
|
+
/>\r
|
|
86006
|
+
}\r
|
|
86007
|
+
\r
|
|
86008
|
+
<div class="federal-update-maintain-form-content">\r
|
|
86009
|
+
@let corporationDetails = getFormGroup(groups.CorporationDetails);\r
|
|
86010
|
+
@if (corporationDetails) {\r
|
|
86011
|
+
<expandable-card\r
|
|
86012
|
+
[isValid]="sectionValidity['corporationDetails']"\r
|
|
86013
|
+
[title]="groups.CorporationDetails"\r
|
|
86014
|
+
>\r
|
|
86015
|
+
<filing-form-group\r
|
|
86016
|
+
[isSubmitted]="isSubmitted()"\r
|
|
86017
|
+
[form]="corporationDetails"\r
|
|
86018
|
+
[config]="corporationDetailsFields"\r
|
|
86019
|
+
(visiblyValidChange)="\r
|
|
86020
|
+
onSectionValidChange('corporationDetails', $event)\r
|
|
86021
|
+
"\r
|
|
86022
|
+
/>\r
|
|
86023
|
+
</expandable-card>\r
|
|
86024
|
+
}\r
|
|
86025
|
+
\r
|
|
86026
|
+
@let directorsArray = getFormArray(groups.Directors);\r
|
|
86027
|
+
@if (directorsArray && directorsArray.length) {\r
|
|
86028
|
+
<expandable-list-card\r
|
|
86029
|
+
[isValid]="sectionValidity['directors']"\r
|
|
86030
|
+
[isSubmitted]="isSubmitted()"\r
|
|
86031
|
+
[fields]="directorsFields"\r
|
|
86032
|
+
[formArray]="directorsArray"\r
|
|
86033
|
+
[labelKey]="controls.AffiliationName"\r
|
|
86034
|
+
[title]="groups.Directors"\r
|
|
86035
|
+
(visiblyValidChange)="onSectionValidChange('directors', $event)"\r
|
|
86036
|
+
/>\r
|
|
86037
|
+
} @else {\r
|
|
86038
|
+
<expandable-card [title]="groups.Directors">\r
|
|
86039
|
+
<h2 class="body-1-regular">{{ 'Unchanged' | translate }}</h2>\r
|
|
86040
|
+
</expandable-card>\r
|
|
86041
|
+
}\r
|
|
86042
|
+
\r
|
|
86043
|
+
@let annualReturn = getFormGroup(groups.AnnualReturn);\r
|
|
86044
|
+
@if (annualReturn) {\r
|
|
86045
|
+
<expandable-card\r
|
|
86046
|
+
[isValid]="sectionValidity['annualReturn']"\r
|
|
86047
|
+
[title]="groups.AnnualReturn"\r
|
|
86048
|
+
>\r
|
|
86049
|
+
<filing-form-group\r
|
|
86050
|
+
[isSubmitted]="isSubmitted()"\r
|
|
86051
|
+
[form]="annualReturn"\r
|
|
86052
|
+
[config]="annualReturnFields"\r
|
|
86053
|
+
(visiblyValidChange)="onSectionValidChange('annualReturn', $event)"\r
|
|
86054
|
+
/>\r
|
|
86055
|
+
</expandable-card>\r
|
|
86056
|
+
}\r
|
|
86057
|
+
\r
|
|
86058
|
+
@let significantControl = getFormGroup(groups.SignificantControl);\r
|
|
86059
|
+
@if (significantControl) {\r
|
|
86060
|
+
@let individualsArray =\r
|
|
86061
|
+
getFormArray(groups.IndividualsWithSignificantControl);\r
|
|
86062
|
+
@if (individualsArray) {\r
|
|
86063
|
+
<expandable-list-card\r
|
|
86064
|
+
[areItemsOpen]="isIndividualsWithSignificantControlOpen()"\r
|
|
86065
|
+
[isValid]="\r
|
|
86066
|
+
sectionValidity['isc'] && sectionValidity['significantControl']\r
|
|
86067
|
+
"\r
|
|
86068
|
+
[isSubmitted]="isSubmitted()"\r
|
|
86069
|
+
[isStatusIcon]="true"\r
|
|
86070
|
+
[removable]="!readonly()"\r
|
|
86071
|
+
[fields]="individualsWithSignificantControlFields()"\r
|
|
86072
|
+
[formArray]="individualsArray"\r
|
|
86073
|
+
[labelKey]="controls.AffiliationName"\r
|
|
86074
|
+
[title]="groups.IndividualsWithSignificantControl"\r
|
|
86075
|
+
(remove)="onRemoveIndividualWithSignificantForm($event)"\r
|
|
86076
|
+
(visiblyValidChange)="onSectionValidChange('isc', $event)"\r
|
|
86077
|
+
>\r
|
|
86078
|
+
@if (\r
|
|
86079
|
+
!readonly() && isAddIndividualWithSignificantControlAvailable()\r
|
|
86080
|
+
) {\r
|
|
86081
|
+
<button\r
|
|
86082
|
+
[disabled]="isAddIndividualWithSignificantControlDisabled()"\r
|
|
86083
|
+
slot="subtitle"\r
|
|
86084
|
+
mat-stroked-button\r
|
|
86085
|
+
mat-button\r
|
|
86086
|
+
(click)="addIndividualWithSignificantControl()"\r
|
|
86087
|
+
>\r
|
|
86088
|
+
<span class="body-1-semibold">{{\r
|
|
86089
|
+
"Add Individuals With Significant Control" | translate\r
|
|
86090
|
+
}}</span>\r
|
|
86091
|
+
</button>\r
|
|
86092
|
+
}\r
|
|
86093
|
+
\r
|
|
86094
|
+
<div class="card-header-content" slot="header-content">\r
|
|
86095
|
+
<filing-form-group\r
|
|
86096
|
+
[isSubmitted]="isSubmitted()"\r
|
|
86097
|
+
[form]="significantControl"\r
|
|
86098
|
+
[config]="significantControlFields"\r
|
|
86099
|
+
(visiblyValidChange)="\r
|
|
86100
|
+
onSectionValidChange('significantControl', $event)\r
|
|
86101
|
+
"\r
|
|
86102
|
+
/>\r
|
|
86103
|
+
</div>\r
|
|
86104
|
+
</expandable-list-card>\r
|
|
86105
|
+
}\r
|
|
86106
|
+
}\r
|
|
86107
|
+
\r
|
|
86108
|
+
@let contact = getFormGroup(groups.Contact);\r
|
|
86109
|
+
@if (contact) {\r
|
|
86110
|
+
<expandable-card\r
|
|
86111
|
+
[isStatusIcon]="!readonly()"\r
|
|
86112
|
+
[isValid]="sectionValidity['contact']"\r
|
|
86113
|
+
[title]="groups.Contact"\r
|
|
86114
|
+
>\r
|
|
86115
|
+
<filing-form-group\r
|
|
86116
|
+
[isSubmitted]="isSubmitted()"\r
|
|
86117
|
+
[form]="contact"\r
|
|
86118
|
+
[config]="contactControl()"\r
|
|
86119
|
+
(visiblyValidChange)="onSectionValidChange('contact', $event)"\r
|
|
86120
|
+
/>\r
|
|
86121
|
+
</expandable-card>\r
|
|
86122
|
+
}\r
|
|
86123
|
+
</div>\r
|
|
86124
|
+
</div>\r
|
|
86081
86125
|
`, styles: ["/* src/app/components/federal/update-maintain/update-maintain-form/update-maintain-form.component.scss */\n:host .federal-update-maintain-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n overflow-y: auto;\n}\n:host .federal-update-maintain-form-content {\n display: flex;\n flex-direction: column;\n gap: 24px;\n}\n:host .card-header-content {\n padding: 0 16px;\n}\n/*# sourceMappingURL=update-maintain-form.component.css.map */\n"] }]
|
|
86082
86126
|
}], () => [], null);
|
|
86083
86127
|
})();
|
|
@@ -86191,37 +86235,37 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86191
86235
|
MatButton,
|
|
86192
86236
|
TranslatePipe,
|
|
86193
86237
|
FederalUpdateMaintainFormComponent
|
|
86194
|
-
], template: `<div class="federal-update-maintain-delta-form"
|
|
86195
|
-
<federal-update-maintain-form
|
|
86196
|
-
class="federal-update-maintain-delta-form-content"
|
|
86197
|
-
[form]="form()"
|
|
86198
|
-
[task]="task()"
|
|
86199
|
-
[errors]="combinedErrors()"
|
|
86200
|
-
[isNote]="isNote()"
|
|
86201
|
-
[isSubmitted]="submitted()"
|
|
86202
|
-
[readonly]="false"
|
|
86203
|
-
(visiblyValidChange)="onVisiblyValidChange($event)"
|
|
86204
|
-
|
|
86205
|
-
|
|
86206
|
-
<div class="federal-update-maintain-delta-form-actions"
|
|
86207
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
86208
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
86209
|
-
</button
|
|
86210
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="save.emit()"
|
|
86211
|
-
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span
|
|
86212
|
-
</button
|
|
86213
|
-
<button
|
|
86214
|
-
class="submit"
|
|
86215
|
-
color="primary"
|
|
86216
|
-
mat-flat-button
|
|
86217
|
-
[disabled]="actionsDisabled()"
|
|
86218
|
-
(click)="onValidate()"
|
|
86219
|
-
|
|
86220
|
-
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span
|
|
86221
|
-
</button
|
|
86222
|
-
</div
|
|
86223
|
-
</div
|
|
86224
|
-
|
|
86238
|
+
], template: `<div class="federal-update-maintain-delta-form">\r
|
|
86239
|
+
<federal-update-maintain-form\r
|
|
86240
|
+
class="federal-update-maintain-delta-form-content"\r
|
|
86241
|
+
[form]="form()"\r
|
|
86242
|
+
[task]="task()"\r
|
|
86243
|
+
[errors]="combinedErrors()"\r
|
|
86244
|
+
[isNote]="isNote()"\r
|
|
86245
|
+
[isSubmitted]="submitted()"\r
|
|
86246
|
+
[readonly]="false"\r
|
|
86247
|
+
(visiblyValidChange)="onVisiblyValidChange($event)"\r
|
|
86248
|
+
/>\r
|
|
86249
|
+
\r
|
|
86250
|
+
<div class="federal-update-maintain-delta-form-actions">\r
|
|
86251
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
86252
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
86253
|
+
</button>\r
|
|
86254
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="save.emit()">\r
|
|
86255
|
+
<span class="body-1-semibold">{{ 'Save Changes' | translate }}</span>\r
|
|
86256
|
+
</button>\r
|
|
86257
|
+
<button\r
|
|
86258
|
+
class="submit"\r
|
|
86259
|
+
color="primary"\r
|
|
86260
|
+
mat-flat-button\r
|
|
86261
|
+
[disabled]="actionsDisabled()"\r
|
|
86262
|
+
(click)="onValidate()"\r
|
|
86263
|
+
>\r
|
|
86264
|
+
<span class="body-1-semibold">{{ 'Validate & Generate Draft' | translate }}</span>\r
|
|
86265
|
+
</button>\r
|
|
86266
|
+
</div>\r
|
|
86267
|
+
</div>\r
|
|
86268
|
+
\r
|
|
86225
86269
|
`, styles: ["/* src/app/components/federal/update-maintain/steps/delta/update-maintain-delta-form.component.scss */\n:host .federal-update-maintain-delta-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .federal-update-maintain-delta-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .federal-update-maintain-delta-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .federal-update-maintain-delta-form-actions button {\n margin: 0;\n}\n:host .federal-update-maintain-delta-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-delta-form.component.css.map */\n"] }]
|
|
86226
86270
|
}], null, null);
|
|
86227
86271
|
})();
|
|
@@ -86296,32 +86340,32 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86296
86340
|
MatButton,
|
|
86297
86341
|
TranslatePipe,
|
|
86298
86342
|
FederalUpdateMaintainFormComponent
|
|
86299
|
-
], template: `<div class="federal-update-maintain-preview-form"
|
|
86300
|
-
<federal-update-maintain-form
|
|
86301
|
-
class="federal-update-maintain-preview-form-content"
|
|
86302
|
-
[form]="form()"
|
|
86303
|
-
[task]="task()"
|
|
86304
|
-
[errors]="errors()"
|
|
86305
|
-
[isSubmitted]="false"
|
|
86306
|
-
[readonly]="true"
|
|
86307
|
-
|
|
86308
|
-
|
|
86309
|
-
<div class="federal-update-maintain-preview-form-actions"
|
|
86310
|
-
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()"
|
|
86311
|
-
<span class="body-1-semibold">{{ 'Close' | translate }}</span
|
|
86312
|
-
</button
|
|
86313
|
-
<button
|
|
86314
|
-
class="submit"
|
|
86315
|
-
color="primary"
|
|
86316
|
-
mat-flat-button
|
|
86317
|
-
[disabled]="actionsDisabled()"
|
|
86318
|
-
(click)="file.emit()"
|
|
86319
|
-
|
|
86320
|
-
<span class="body-1-semibold">{{ 'File' | translate }}</span
|
|
86321
|
-
</button
|
|
86322
|
-
</div
|
|
86323
|
-
</div
|
|
86324
|
-
|
|
86343
|
+
], template: `<div class="federal-update-maintain-preview-form">\r
|
|
86344
|
+
<federal-update-maintain-form\r
|
|
86345
|
+
class="federal-update-maintain-preview-form-content"\r
|
|
86346
|
+
[form]="form()"\r
|
|
86347
|
+
[task]="task()"\r
|
|
86348
|
+
[errors]="errors()"\r
|
|
86349
|
+
[isSubmitted]="false"\r
|
|
86350
|
+
[readonly]="true"\r
|
|
86351
|
+
/>\r
|
|
86352
|
+
\r
|
|
86353
|
+
<div class="federal-update-maintain-preview-form-actions">\r
|
|
86354
|
+
<button [disabled]="actionsDisabled()" mat-stroked-button mat-button (click)="close.emit()">\r
|
|
86355
|
+
<span class="body-1-semibold">{{ 'Close' | translate }}</span>\r
|
|
86356
|
+
</button>\r
|
|
86357
|
+
<button\r
|
|
86358
|
+
class="submit"\r
|
|
86359
|
+
color="primary"\r
|
|
86360
|
+
mat-flat-button\r
|
|
86361
|
+
[disabled]="actionsDisabled()"\r
|
|
86362
|
+
(click)="file.emit()"\r
|
|
86363
|
+
>\r
|
|
86364
|
+
<span class="body-1-semibold">{{ 'File' | translate }}</span>\r
|
|
86365
|
+
</button>\r
|
|
86366
|
+
</div>\r
|
|
86367
|
+
</div>\r
|
|
86368
|
+
\r
|
|
86325
86369
|
`, styles: ["/* src/app/components/federal/update-maintain/steps/preview/update-maintain-preview-form.component.scss */\n:host .federal-update-maintain-preview-form {\n display: flex;\n flex-direction: column;\n gap: 16px;\n height: 100%;\n}\n:host .federal-update-maintain-preview-form-content {\n flex: 1;\n min-height: 0;\n}\n:host .federal-update-maintain-preview-form-actions {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding-top: 16px;\n}\n:host .federal-update-maintain-preview-form-actions button {\n margin: 0;\n}\n:host .federal-update-maintain-preview-form-actions .submit {\n padding-left: 30px;\n padding-right: 30px;\n}\n/*# sourceMappingURL=update-maintain-preview-form.component.css.map */\n"] }]
|
|
86326
86370
|
}], null, null);
|
|
86327
86371
|
})();
|
|
@@ -86742,7 +86786,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
86742
86786
|
FederalIncorporationPreviewFormComponent,
|
|
86743
86787
|
FederalUpdateMaintainDeltaFormComponent,
|
|
86744
86788
|
FederalUpdateMaintainPreviewFormComponent
|
|
86745
|
-
], template: '@let currentTask = task();\n\n@if (currentTask) {\n @if (isFormationTask(currentTask)) {\n @if (activeStep() === steps.Validate) {\n <federal-incorporation-delta-form\n [documents]="documents"\n [selectedDocuments]="selectedDocuments()"\n (addDocuments)="onAddDocuments($event)"\n (removeDocument)="onRemoveDocument($event)"\n (close)="onClose()"\n (validate)="onValidate()"\n (save)="onSave()"\n [task]="currentTask"\n [errors]="errors()"\n [actionsDisabled]="actionsDisabled()"\n [isNote]="isNote()"\n [form]="deltaForm()"\n />\n\n } @else if (activeStep() === steps.FilingPreview) {\n <federal-incorporation-preview-form (close)="close.emit()" (file)="onFile()" [task]="currentTask"\n [errors]="errors()"\n [actionsDisabled]="actionsDisabled()" [form]="previewForm()"\n [selectedDocuments]="selectedDocuments()"/>\n }\n }\n\n @if (isUpdateMaintainTask(currentTask)) {\n @if (activeStep() === steps.Validate) {\n <federal-update-maintain-delta-form\n [task]="$any(currentTask)"\n [form]="umDeltaForm()"\n [actionsDisabled]="actionsDisabled()"\n [errors]="errors()"\n [isNote]="isNote()"\n (validate)="onUmValidate()"\n (close)="onClose()"\n (save)="onUmSave()"\n />\n }\n\n @if (activeStep() === steps.FilingPreview) {\n <federal-update-maintain-preview-form\n [task]="$any(currentTask)"\n [form]="umPreviewForm()"\n [actionsDisabled]="actionsDisabled()"\n [errors]="errors()"\n (close)="close.emit()"\n (file)="onUmSubmit()"\n />\n }\n }\n}\n\n\n\n\n\n', styles: ["/* src/app/components/federal/federal.component.scss */\n:host .federal {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n/*# sourceMappingURL=federal.component.css.map */\n"] }]
|
|
86789
|
+
], template: '@let currentTask = task();\r\n\r\n@if (currentTask) {\r\n @if (isFormationTask(currentTask)) {\r\n @if (activeStep() === steps.Validate) {\r\n <federal-incorporation-delta-form\r\n [documents]="documents"\r\n [selectedDocuments]="selectedDocuments()"\r\n (addDocuments)="onAddDocuments($event)"\r\n (removeDocument)="onRemoveDocument($event)"\r\n (close)="onClose()"\r\n (validate)="onValidate()"\r\n (save)="onSave()"\r\n [task]="currentTask"\r\n [errors]="errors()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [isNote]="isNote()"\r\n [form]="deltaForm()"\r\n />\r\n\r\n } @else if (activeStep() === steps.FilingPreview) {\r\n <federal-incorporation-preview-form (close)="close.emit()" (file)="onFile()" [task]="currentTask"\r\n [errors]="errors()"\r\n [actionsDisabled]="actionsDisabled()" [form]="previewForm()"\r\n [selectedDocuments]="selectedDocuments()"/>\r\n }\r\n }\r\n\r\n @if (isUpdateMaintainTask(currentTask)) {\r\n @if (activeStep() === steps.Validate) {\r\n <federal-update-maintain-delta-form\r\n [task]="$any(currentTask)"\r\n [form]="umDeltaForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [errors]="errors()"\r\n [isNote]="isNote()"\r\n (validate)="onUmValidate()"\r\n (close)="onClose()"\r\n (save)="onUmSave()"\r\n />\r\n }\r\n\r\n @if (activeStep() === steps.FilingPreview) {\r\n <federal-update-maintain-preview-form\r\n [task]="$any(currentTask)"\r\n [form]="umPreviewForm()"\r\n [actionsDisabled]="actionsDisabled()"\r\n [errors]="errors()"\r\n (close)="close.emit()"\r\n (file)="onUmSubmit()"\r\n />\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n\r\n\r\n', styles: ["/* src/app/components/federal/federal.component.scss */\n:host .federal {\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n/*# sourceMappingURL=federal.component.css.map */\n"] }]
|
|
86746
86790
|
}], () => [], null);
|
|
86747
86791
|
})();
|
|
86748
86792
|
(() => {
|
|
@@ -87343,56 +87387,45 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87343
87387
|
return { streetNumber: "", streetName: "" };
|
|
87344
87388
|
}
|
|
87345
87389
|
function corporationInfoToPersonnelDeltaData(corporationInfo) {
|
|
87346
|
-
const
|
|
87347
|
-
const officersMap = /* @__PURE__ */ new Map();
|
|
87390
|
+
const personsMap = /* @__PURE__ */ new Map();
|
|
87348
87391
|
if (!corporationInfo)
|
|
87349
|
-
return {
|
|
87350
|
-
const
|
|
87392
|
+
return { persons: personsMap, corporationInfo: { primaryActivity: "", email: "" } };
|
|
87393
|
+
const initialAdministrators = corporationInfo.CurrentData.InitialAdministrators;
|
|
87351
87394
|
const fullName = (payload) => {
|
|
87352
87395
|
return [
|
|
87353
|
-
payload.PersonName.FirstName,
|
|
87354
|
-
payload.PersonName.MiddleName,
|
|
87355
|
-
payload.PersonName.LastName
|
|
87396
|
+
payload.PersonName.FirstName?.toLowerCase() ?? "",
|
|
87397
|
+
payload.PersonName.MiddleName?.toLowerCase() ?? "",
|
|
87398
|
+
payload.PersonName.LastName?.toLowerCase() ?? "",
|
|
87399
|
+
payload.OfficerPositionName?.toLowerCase() ?? ""
|
|
87356
87400
|
].filter(Boolean).join(" ");
|
|
87357
87401
|
};
|
|
87358
|
-
const populatePersonsMap = (
|
|
87359
|
-
for (const
|
|
87360
|
-
|
|
87361
|
-
|
|
87362
|
-
|
|
87363
|
-
|
|
87364
|
-
|
|
87365
|
-
|
|
87366
|
-
|
|
87367
|
-
|
|
87368
|
-
|
|
87369
|
-
|
|
87402
|
+
const populatePersonsMap = (list) => {
|
|
87403
|
+
for (const payload of list ?? []) {
|
|
87404
|
+
if (!payload)
|
|
87405
|
+
continue;
|
|
87406
|
+
const deltaData = irPersonPayloadToDeltaData(payload);
|
|
87407
|
+
if (!deltaData)
|
|
87408
|
+
continue;
|
|
87409
|
+
const email = ("EmailAddress" in payload ? payload.EmailAddress : "") ?? "";
|
|
87410
|
+
const ceasedRoles = "CeasedAppointedRoles" in payload && Array.isArray(payload.CeasedAppointedRoles) ? payload.CeasedAppointedRoles.map((role) => `${role.PositionFullName} - ${role.CeasedDate} (Appointed ${role.AppointedDate})`) : void 0;
|
|
87411
|
+
const name = [
|
|
87412
|
+
toTitleCase(payload.PersonName.FirstName ?? ""),
|
|
87413
|
+
toTitleCase(payload.PersonName.MiddleName ?? ""),
|
|
87414
|
+
toTitleCase(payload.PersonName.LastName ?? "")
|
|
87415
|
+
].filter(Boolean).join(" ");
|
|
87416
|
+
personsMap.set(fullName(payload), __spreadProps(__spreadValues({}, deltaData), { email, ceasedRoles, position: payload.OfficerPositionName, fullName: name }));
|
|
87370
87417
|
}
|
|
87371
87418
|
};
|
|
87372
|
-
populatePersonsMap(
|
|
87373
|
-
cd?.AddedDirectors,
|
|
87374
|
-
cd?.CeasedDirectors,
|
|
87375
|
-
cd?.EditedDirectors,
|
|
87376
|
-
cd?.AddDirector,
|
|
87377
|
-
cd?.CeaseDirector,
|
|
87378
|
-
cd?.EditDirector
|
|
87379
|
-
], directorsMap);
|
|
87380
|
-
populatePersonsMap([
|
|
87381
|
-
co?.AddedOfficers,
|
|
87382
|
-
co?.CeasedOfficers,
|
|
87383
|
-
co?.EditedOfficers,
|
|
87384
|
-
co?.AddOfficer,
|
|
87385
|
-
co?.CeaseOfficer,
|
|
87386
|
-
co?.EditOfficer
|
|
87387
|
-
], officersMap);
|
|
87419
|
+
populatePersonsMap(initialAdministrators);
|
|
87388
87420
|
const primaryActivity = [corporationInfo?.CurrentData.PrimaryBusinessActivity.NAICSCode, corporationInfo?.CurrentData.PrimaryBusinessActivity.PrimaryActivity].join(" - ");
|
|
87389
87421
|
const additionalDetails = corporationInfo?.CurrentData.AdditionalDetails;
|
|
87390
|
-
return {
|
|
87422
|
+
return { persons: personsMap, corporationInfo: { email: corporationInfo.CurrentData.OfficialEmail.Email, primaryActivity, registeredOfficeAddress: extractAddressDeltaDataFromInitialReturnAddressContainer(corporationInfo?.CurrentData.RegisteredHeadOfficeAddress), additionalInfo: additionalDetails ? extractAddressDeltaDataFromInitialReturnAdditionalDetails(additionalDetails) : null } };
|
|
87391
87423
|
}
|
|
87392
87424
|
var init_initial_return_payload_helper = __esm({
|
|
87393
87425
|
"src/app/helpers/initial-return-payload.helper.ts"() {
|
|
87394
87426
|
init_address_utils();
|
|
87395
87427
|
init_transform_utils();
|
|
87428
|
+
init_common_utils();
|
|
87396
87429
|
}
|
|
87397
87430
|
});
|
|
87398
87431
|
|
|
@@ -87561,13 +87594,13 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87561
87594
|
}
|
|
87562
87595
|
function transformIncorporator(incorporator) {
|
|
87563
87596
|
const isIndividual = incorporator.type === "person";
|
|
87564
|
-
const incorporationType = isIndividual ? ECoreIncorporatorType.Individual : ECoreIncorporatorType.
|
|
87597
|
+
const incorporationType = isIndividual ? ECoreIncorporatorType.Individual : ECoreIncorporatorType.NonRegCorporate;
|
|
87565
87598
|
return {
|
|
87566
87599
|
IncorporatorType: incorporationType,
|
|
87567
87600
|
FirstName: isIndividual ? incorporator.firstName : void 0,
|
|
87568
87601
|
MiddleName: isIndividual ? incorporator.middleName : void 0,
|
|
87569
87602
|
LastName: isIndividual ? incorporator.lastName : void 0,
|
|
87570
|
-
|
|
87603
|
+
CompanyName: !isIndividual ? incorporator.incorporator_name : void 0,
|
|
87571
87604
|
Signature: `${incorporator.signatory_first_name ?? ""} ${incorporator.signatory_last_name ?? ""}, ${incorporator.signatory_title ?? ""}`,
|
|
87572
87605
|
Address: mapAddress(incorporator)
|
|
87573
87606
|
};
|
|
@@ -87764,9 +87797,8 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87764
87797
|
function buildOntarioUpdateMaintainValidationRequest(task, deltaData, serviceOrderId, corporationInfo) {
|
|
87765
87798
|
const initialAdministrators = corporationInfo?.CurrentData.InitialAdministrators;
|
|
87766
87799
|
const normalizePersonTitle = (name) => (name ?? "").trim().replace(/\s+/g, " ").toLowerCase();
|
|
87767
|
-
const getCurrentDataAdministrator = (
|
|
87768
|
-
|
|
87769
|
-
if (!affiliationTitle || !initialAdministrators?.length) {
|
|
87800
|
+
const getCurrentDataAdministrator = (name, isOfficer) => {
|
|
87801
|
+
if (!name || !initialAdministrators?.length) {
|
|
87770
87802
|
return null;
|
|
87771
87803
|
}
|
|
87772
87804
|
const matchedOfficer = initialAdministrators.find((admin) => {
|
|
@@ -87774,11 +87806,12 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87774
87806
|
return false;
|
|
87775
87807
|
}
|
|
87776
87808
|
const adminTitle = normalizePersonTitle([
|
|
87777
|
-
admin.PersonName?.FirstName,
|
|
87778
|
-
admin.PersonName?.MiddleName,
|
|
87779
|
-
admin.PersonName?.LastName
|
|
87809
|
+
admin.PersonName?.FirstName?.toLowerCase(),
|
|
87810
|
+
admin.PersonName?.MiddleName?.toLowerCase(),
|
|
87811
|
+
admin.PersonName?.LastName?.toLowerCase(),
|
|
87812
|
+
admin.OfficerPositionName?.toLowerCase()
|
|
87780
87813
|
].filter(Boolean).join(" "));
|
|
87781
|
-
return adminTitle ===
|
|
87814
|
+
return adminTitle === name;
|
|
87782
87815
|
});
|
|
87783
87816
|
return matchedOfficer ?? null;
|
|
87784
87817
|
};
|
|
@@ -87855,7 +87888,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87855
87888
|
const PostalAddress = buildPostalAddress(entityAddr, deltaEntry?.address);
|
|
87856
87889
|
const PersonName = { FirstName: firstName, MiddleName: middleName, LastName: lastName };
|
|
87857
87890
|
const position = isOfficer ? OFFICER_TITLE_TO_ECORE_POSITION_CODE[toTitleCase(aff.role?.static_title ?? "")] ?? "" : "Director";
|
|
87858
|
-
const matchingAdmin = getCurrentDataAdministrator(
|
|
87891
|
+
const matchingAdmin = getCurrentDataAdministrator(deltaEntry.currentName ?? "", isOfficer);
|
|
87859
87892
|
const isCeaseAction = currentState === IRCurrentState.Ceased;
|
|
87860
87893
|
const isDirectorFromRole = aff.role?.role_name === "Director";
|
|
87861
87894
|
const mappedCurrentStateName = currentState === IRCurrentState.Added ? "Added" : currentState === IRCurrentState.Ceased ? "Ceased" : "Edited";
|
|
@@ -87869,9 +87902,9 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87869
87902
|
switch (currentState) {
|
|
87870
87903
|
case IRCurrentState.Added:
|
|
87871
87904
|
return {
|
|
87872
|
-
Id:
|
|
87873
|
-
RoleId:
|
|
87874
|
-
CeaseDate:
|
|
87905
|
+
Id: "",
|
|
87906
|
+
RoleId: "",
|
|
87907
|
+
CeaseDate: "",
|
|
87875
87908
|
CeasedAppointedRoles: [
|
|
87876
87909
|
{
|
|
87877
87910
|
State: "",
|
|
@@ -87959,10 +87992,10 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
87959
87992
|
switch (currentState) {
|
|
87960
87993
|
case IRCurrentState.Added:
|
|
87961
87994
|
return {
|
|
87962
|
-
Id:
|
|
87963
|
-
RoleId:
|
|
87964
|
-
OfficerId:
|
|
87965
|
-
CeaseDate:
|
|
87995
|
+
Id: "",
|
|
87996
|
+
RoleId: "",
|
|
87997
|
+
OfficerId: "",
|
|
87998
|
+
CeaseDate: "",
|
|
87966
87999
|
CeasedAppointedRoles: [
|
|
87967
88000
|
{
|
|
87968
88001
|
State: "",
|
|
@@ -88583,6 +88616,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
88583
88616
|
return;
|
|
88584
88617
|
}
|
|
88585
88618
|
if (isUpdateMaintain(task) && isOntarioTask(task)) {
|
|
88619
|
+
yield this.getCurrentData();
|
|
88586
88620
|
const serviceOrderId = deltaData?.serviceOrderId;
|
|
88587
88621
|
if (serviceOrderId) {
|
|
88588
88622
|
this.defineInitialStep();
|
|
@@ -88590,7 +88624,6 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
88590
88624
|
if (serviceOrderId && !this.dataWasChanged()) {
|
|
88591
88625
|
this.serviceOrderId = serviceOrderId;
|
|
88592
88626
|
}
|
|
88593
|
-
yield this.getCurrentData();
|
|
88594
88627
|
}
|
|
88595
88628
|
}));
|
|
88596
88629
|
}
|
|
@@ -89108,78 +89141,78 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
89108
89141
|
OntarioComponent
|
|
89109
89142
|
], encapsulation: ViewEncapsulation.ShadowDom, host: {
|
|
89110
89143
|
"[style.height]": "modalHeight()"
|
|
89111
|
-
}, template: `<div class="filing"
|
|
89112
|
-
<div class="filing-title"
|
|
89113
|
-
<h1 class="filing-title-text">{{title() | translate}}</h1
|
|
89114
|
-
<mat-icon (click)="onClose()" class="filing-title-action">close</mat-icon
|
|
89115
|
-
</div
|
|
89116
|
-
|
|
89117
|
-
@if (isEditButton()) {
|
|
89118
|
-
<div class="filing-header"
|
|
89119
|
-
<button
|
|
89120
|
-
mat-stroked-button
|
|
89121
|
-
[disabled]="isLoading()"
|
|
89122
|
-
(click)="onEditClick()"
|
|
89123
|
-
|
|
89124
|
-
{{ 'Edit' | translate }}
|
|
89125
|
-
</button
|
|
89126
|
-
</div
|
|
89127
|
-
}
|
|
89128
|
-
|
|
89129
|
-
<div [class.edit]="isEditButton()" class="filing-content"
|
|
89130
|
-
@let currentTask = task()
|
|
89131
|
-
|
|
89132
|
-
@if (currentTask) {
|
|
89133
|
-
@if (isOntarioTask(currentTask)) {
|
|
89134
|
-
<ontario
|
|
89135
|
-
[task]="currentTask"
|
|
89136
|
-
[activeStep]="activeStep()"
|
|
89137
|
-
[isNote]="dataWasChanged()"
|
|
89138
|
-
[actionsDisabled]="isLoading()"
|
|
89139
|
-
[errors]="errors()"
|
|
89140
|
-
[prevData]="prevData()"
|
|
89141
|
-
(close)="close.emit()"
|
|
89142
|
-
(formationValidate)="onOntarioFormationValidate($event)"
|
|
89143
|
-
(saveFormationDeltaData)="onOntarioFormationSave($event)"
|
|
89144
|
-
(formationSubmit)="onOntarioFormationSubmit()"
|
|
89145
|
-
(nextStep)="onNextStepClick()"
|
|
89146
|
-
(prevStep)="onOntarioPrevStep()"
|
|
89147
|
-
[irValidationConfig]="validationConfig()"
|
|
89148
|
-
(irValidate)="validateAndFileInitialReturnTask($event)"
|
|
89149
|
-
(saveIrDeltaData)="onOntarioUpdateMaintainSave($event)"
|
|
89150
|
-
(irSubmit)="onInitialReturnSubmit()"
|
|
89151
|
-
|
|
89152
|
-
} @else {
|
|
89153
|
-
<federal
|
|
89154
|
-
[actionsDisabled]="isLoading()"
|
|
89155
|
-
[isNote]="dataWasChanged()"
|
|
89156
|
-
[activeStep]="activeStep()"
|
|
89157
|
-
[task]="currentTask"
|
|
89158
|
-
[errors]="errors()"
|
|
89159
|
-
(close)="close.emit()"
|
|
89160
|
-
(deltaDataChange)="onFederalFormationSave($event)"
|
|
89161
|
-
(file)="onFederalFormationSubmit()"
|
|
89162
|
-
(validate)="onFederalValidate($event)"
|
|
89163
|
-
(umSave)="onFederalUpdateMaintainSave($event)"
|
|
89164
|
-
(umValidate)="onFederalUpdateMaintainValidate($event)"
|
|
89165
|
-
(umSubmit)="onFederalUpdateMaintainSubmit()"
|
|
89166
|
-
(nextStep)="defineInitialStep()"
|
|
89167
|
-
|
|
89168
|
-
}
|
|
89169
|
-
}
|
|
89170
|
-
|
|
89171
|
-
@if (isLoading()) {
|
|
89172
|
-
<div class="filing-content-loading"
|
|
89173
|
-
<mat-spinner [diameter]="40"
|
|
89174
|
-
</div
|
|
89175
|
-
}
|
|
89176
|
-
</div
|
|
89177
|
-
</div
|
|
89144
|
+
}, template: `<div class="filing">\r
|
|
89145
|
+
<div class="filing-title">\r
|
|
89146
|
+
<h1 class="filing-title-text">{{title() | translate}}</h1>\r
|
|
89147
|
+
<mat-icon (click)="onClose()" class="filing-title-action">close</mat-icon>\r
|
|
89148
|
+
</div>\r
|
|
89149
|
+
\r
|
|
89150
|
+
@if (isEditButton()) {\r
|
|
89151
|
+
<div class="filing-header">\r
|
|
89152
|
+
<button\r
|
|
89153
|
+
mat-stroked-button\r
|
|
89154
|
+
[disabled]="isLoading()"\r
|
|
89155
|
+
(click)="onEditClick()"\r
|
|
89156
|
+
>\r
|
|
89157
|
+
{{ 'Edit' | translate }}\r
|
|
89158
|
+
</button>\r
|
|
89159
|
+
</div>\r
|
|
89160
|
+
}\r
|
|
89161
|
+
\r
|
|
89162
|
+
<div [class.edit]="isEditButton()" class="filing-content">\r
|
|
89163
|
+
@let currentTask = task();\r
|
|
89164
|
+
\r
|
|
89165
|
+
@if (currentTask) {\r
|
|
89166
|
+
@if (isOntarioTask(currentTask)) {\r
|
|
89167
|
+
<ontario\r
|
|
89168
|
+
[task]="currentTask"\r
|
|
89169
|
+
[activeStep]="activeStep()"\r
|
|
89170
|
+
[isNote]="dataWasChanged()"\r
|
|
89171
|
+
[actionsDisabled]="isLoading()"\r
|
|
89172
|
+
[errors]="errors()"\r
|
|
89173
|
+
[prevData]="prevData()"\r
|
|
89174
|
+
(close)="close.emit()"\r
|
|
89175
|
+
(formationValidate)="onOntarioFormationValidate($event)"\r
|
|
89176
|
+
(saveFormationDeltaData)="onOntarioFormationSave($event)"\r
|
|
89177
|
+
(formationSubmit)="onOntarioFormationSubmit()"\r
|
|
89178
|
+
(nextStep)="onNextStepClick()"\r
|
|
89179
|
+
(prevStep)="onOntarioPrevStep()"\r
|
|
89180
|
+
[irValidationConfig]="validationConfig()"\r
|
|
89181
|
+
(irValidate)="validateAndFileInitialReturnTask($event)"\r
|
|
89182
|
+
(saveIrDeltaData)="onOntarioUpdateMaintainSave($event)"\r
|
|
89183
|
+
(irSubmit)="onInitialReturnSubmit()"\r
|
|
89184
|
+
/>\r
|
|
89185
|
+
} @else {\r
|
|
89186
|
+
<federal\r
|
|
89187
|
+
[actionsDisabled]="isLoading()"\r
|
|
89188
|
+
[isNote]="dataWasChanged()"\r
|
|
89189
|
+
[activeStep]="activeStep()"\r
|
|
89190
|
+
[task]="currentTask"\r
|
|
89191
|
+
[errors]="errors()"\r
|
|
89192
|
+
(close)="close.emit()"\r
|
|
89193
|
+
(deltaDataChange)="onFederalFormationSave($event)"\r
|
|
89194
|
+
(file)="onFederalFormationSubmit()"\r
|
|
89195
|
+
(validate)="onFederalValidate($event)"\r
|
|
89196
|
+
(umSave)="onFederalUpdateMaintainSave($event)"\r
|
|
89197
|
+
(umValidate)="onFederalUpdateMaintainValidate($event)"\r
|
|
89198
|
+
(umSubmit)="onFederalUpdateMaintainSubmit()"\r
|
|
89199
|
+
(nextStep)="defineInitialStep()"\r
|
|
89200
|
+
/>\r
|
|
89201
|
+
}\r
|
|
89202
|
+
}\r
|
|
89203
|
+
\r
|
|
89204
|
+
@if (isLoading()) {\r
|
|
89205
|
+
<div class="filing-content-loading">\r
|
|
89206
|
+
<mat-spinner [diameter]="40" />\r
|
|
89207
|
+
</div>\r
|
|
89208
|
+
}\r
|
|
89209
|
+
</div>\r
|
|
89210
|
+
</div>\r
|
|
89178
89211
|
`, styles: ["/* src/app/components/filing/filing.component.scss */\n:host {\n display: flex;\n}\n:host .filing {\n position: relative;\n height: 100%;\n display: flex;\n flex-direction: column;\n gap: 16px;\n}\n:host .filing-title {\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n:host .filing-title-text {\n color: #666666;\n}\n:host .filing-title-action {\n cursor: pointer;\n}\n:host .filing-header {\n display: flex;\n width: 100%;\n justify-content: flex-end;\n}\n:host .filing-content {\n height: calc(100% - 44px);\n}\n:host .filing-content.edit {\n height: calc(100% - 95px);\n}\n:host .filing-content-loading {\n display: flex;\n align-items: center;\n justify-content: center;\n position: absolute;\n background: transparent;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.pointer {\n cursor: pointer;\n}\n/*# sourceMappingURL=filing.component.css.map */\n", '/* src/app/components/filing/typography.scss */\n:host {\n --filing-modal-color-grey: #444444;\n --filing-modal-color-dark-blue: #485673;\n --filing-modal-color-grey-mid: #A0A0A0;\n --filing-modal-color-light-blue: #3778E4;\n --filing-modal-color-black: #444444;\n}\nmat-icon {\n font-family: "Material Icons" !important;\n font-size: 20px;\n height: 20px;\n width: 20px;\n line-height: 20px;\n}\nh1 {\n font-size: 24px;\n line-height: 28px;\n font-weight: 700;\n font-family: "Open Sans";\n margin: 0;\n}\nh2 {\n font-size: 22px;\n line-height: 26px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh3 {\n font-size: 18px;\n font-weight: 600;\n font-family: "Open Sans";\n margin-top: 0;\n margin-bottom: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 22px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\nh4 {\n font-size: 16px;\n line-height: 20px;\n font-weight: 600;\n font-family: "Open Sans";\n margin: 0;\n}\n.body-1-regular {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-1-bold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-1-semibold {\n line-height: 20px;\n font-size: 14px !important;\n font-weight: 600;\n font-family: "Open Sans";\n}\n.body-2-regular {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-2-bold {\n line-height: 20px;\n font-size: 12px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\n.body-3-regular {\n line-height: 20px;\n font-size: 16px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-regular {\n line-height: 18px;\n font-size: 18px !important;\n font-weight: 400;\n font-family: "Open Sans";\n}\n.body-4-bold {\n line-height: 20px;\n font-size: 20px !important;\n font-weight: 700;\n font-family: "Open Sans";\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0;\n}\n.black {\n color: var(--filing-modal-color-black);\n}\n.grey {\n color: var(--filing-modal-color-grey);\n}\n.dark-blue {\n color: var(--filing-modal-color-dark-blue);\n}\n.grey-mid {\n color: var(--filing-modal-color-grey-mid);\n}\n.light-blue {\n color: var(--filing-modal-color-light-blue);\n}\n/*# sourceMappingURL=typography.css.map */\n', '/* src/app/components/filing/material-theme.scss */\n.filling {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\n.filling {\n margin: 0;\n font-family: "Helvetica Neue", sans-serif;\n}\n.filing {\n --app-font-family:\n -apple-system,\n BlinkMacSystemFont,\n "Helvetica Neue",\n Helvetica,\n Arial,\n sans-serif;\n --mat-sys-background: #faf9fd;\n --mat-sys-error: #ba1a1a;\n --mat-sys-error-container: #ffdad6;\n --mat-sys-inverse-on-surface: #f2f0f4;\n --mat-sys-inverse-primary: #abc7ff;\n --mat-sys-inverse-surface: #2f3033;\n --mat-sys-on-background: #1a1b1f;\n --mat-sys-on-error: #ffffff;\n --mat-sys-on-error-container: #93000a;\n --mat-sys-on-primary: #ffffff;\n --mat-sys-on-primary-container: #00458f;\n --mat-sys-on-primary-fixed: #001b3f;\n --mat-sys-on-primary-fixed-variant: #00458f;\n --mat-sys-on-secondary: #ffffff;\n --mat-sys-on-secondary-container: #3e4759;\n --mat-sys-on-secondary-fixed: #131c2b;\n --mat-sys-on-secondary-fixed-variant: #3e4759;\n --mat-sys-on-surface: #1a1b1f;\n --mat-sys-on-surface-variant: var(--filing-modal-color-grey);\n --mat-sys-on-tertiary: #ffffff;\n --mat-sys-on-tertiary-container: #0000ef;\n --mat-sys-on-tertiary-fixed: #00006e;\n --mat-sys-on-tertiary-fixed-variant: #0000ef;\n --mat-sys-outline: #74777f;\n --mat-sys-outline-variant: #c4c6d0;\n --mat-sys-primary: #3778e4;\n --mat-sys-primary-container: #d7e3ff;\n --mat-sys-primary-fixed: #d7e3ff;\n --mat-sys-primary-fixed-dim: #abc7ff;\n --mat-sys-scrim: #000000;\n --mat-sys-secondary: #565e71;\n --mat-sys-secondary-container: #dae2f9;\n --mat-sys-secondary-fixed: #dae2f9;\n --mat-sys-secondary-fixed-dim: #bec6dc;\n --mat-sys-shadow: #000000;\n --mat-sys-surface: #faf9fd;\n --mat-sys-surface-bright: #faf9fd;\n --mat-sys-surface-container: #efedf0;\n --mat-sys-surface-container-high: #e9e7eb;\n --mat-sys-surface-container-highest: #e3e2e6;\n --mat-sys-surface-container-low: #f4f3f6;\n --mat-sys-surface-container-lowest: #ffffff;\n --mat-sys-surface-dim: #dbd9dd;\n --mat-sys-surface-tint: #005cbb;\n --mat-sys-surface-variant: #e0e2ec;\n --mat-sys-tertiary: #343dff;\n --mat-sys-tertiary-container: #e0e0ff;\n --mat-sys-tertiary-fixed: #e0e0ff;\n --mat-sys-tertiary-fixed-dim: #bec2ff;\n --mat-sys-neutral-variant20: #2d3038;\n --mat-sys-neutral10: #1a1b1f;\n --mdc-filled-button-container-height: 35px;\n --mdc-outlined-button-container-height: 35px;\n --mdc-text-button-label-text-color: #808090;\n --mdc-filled-button-label-text-weight: 600;\n --mdc-text-button-label-text-weight: 600;\n --mdc-filled-button-container-shape: 4px;\n --mdc-outlined-button-outline-color: none;\n --mdc-outlined-button-container-shape: 6px;\n --mat-sys-level0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level2:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level3:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-sys-level4:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-sys-level5:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-text-field-label-text-size: 16px;\n --mat-sys-body-large: 400 1rem / 1.5rem var(--app-font-family);\n --mat-sys-body-large-font: var(--app-font-family);\n --mat-sys-body-large-line-height: 1.5rem;\n --mat-sys-body-large-size: 14px;\n --mat-sys-body-large-tracking: 0.031rem;\n --mat-sys-body-large-weight: 400;\n --mat-sys-body-medium: 400 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-body-medium-font: var(--app-font-family);\n --mat-sys-body-medium-line-height: 1.25rem;\n --mat-sys-body-medium-size: 0.875rem;\n --mat-sys-body-medium-tracking: 0.016rem;\n --mat-sys-body-medium-weight: 400;\n --mat-sys-body-small: 400 0.75rem / 1rem var(--app-font-family);\n --mat-sys-body-small-font: var(--app-font-family);\n --mat-sys-body-small-line-height: 1rem;\n --mat-sys-body-small-size: 0.75rem;\n --mat-sys-body-small-tracking: 0.025rem;\n --mat-sys-body-small-weight: 400;\n --mat-sys-display-large: 400 3.562rem / 4rem var(--app-font-family);\n --mat-sys-display-large-font: var(--app-font-family);\n --mat-sys-display-large-line-height: 4rem;\n --mat-sys-display-large-size: 3.562rem;\n --mat-sys-display-large-tracking: -0.016rem;\n --mat-sys-display-large-weight: 400;\n --mat-sys-display-medium: 400 2.812rem / 3.25rem var(--app-font-family);\n --mat-sys-display-medium-font: var(--app-font-family);\n --mat-sys-display-medium-line-height: 3.25rem;\n --mat-sys-display-medium-size: 2.812rem;\n --mat-sys-display-medium-tracking: 0;\n --mat-sys-display-medium-weight: 400;\n --mat-sys-display-small: 400 2.25rem / 2.75rem var(--app-font-family);\n --mat-sys-display-small-font: var(--app-font-family);\n --mat-sys-display-small-line-height: 2.75rem;\n --mat-sys-display-small-size: 2.25rem;\n --mat-sys-display-small-tracking: 0;\n --mat-sys-display-small-weight: 400;\n --mat-sys-headline-large: 400 2rem / 2.5rem var(--app-font-family);\n --mat-sys-headline-large-font: var(--app-font-family);\n --mat-sys-headline-large-line-height: 2.5rem;\n --mat-sys-headline-large-size: 2rem;\n --mat-sys-headline-large-tracking: 0;\n --mat-sys-headline-large-weight: 400;\n --mat-sys-headline-medium: 400 1.75rem / 2.25rem var(--app-font-family);\n --mat-sys-headline-medium-font: var(--app-font-family);\n --mat-sys-headline-medium-line-height: 2.25rem;\n --mat-sys-headline-medium-size: 1.75rem;\n --mat-sys-headline-medium-tracking: 0;\n --mat-sys-headline-medium-weight: 400;\n --mat-sys-headline-small: 400 1.5rem / 2rem var(--app-font-family);\n --mat-sys-headline-small-font: var(--app-font-family);\n --mat-sys-headline-small-line-height: 2rem;\n --mat-sys-headline-small-size: 1.5rem;\n --mat-sys-headline-small-tracking: 0;\n --mat-sys-headline-small-weight: 400;\n --mat-sys-label-large: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-label-large-font: var(--app-font-family);\n --mat-sys-label-large-line-height: 1.25rem;\n --mat-sys-label-large-size: 0.875rem;\n --mat-sys-label-large-tracking: 0.006rem;\n --mat-sys-label-large-weight: 500;\n --mat-sys-label-large-weight-prominent: 700;\n --mat-sys-label-medium: 500 0.75rem / 1rem var(--app-font-family);\n --mat-sys-label-medium-font: var(--app-font-family);\n --mat-sys-label-medium-line-height: 1rem;\n --mat-sys-label-medium-size: 0.75rem;\n --mat-sys-label-medium-tracking: 0.031rem;\n --mat-sys-label-medium-weight: 500;\n --mat-sys-label-medium-weight-prominent: 700;\n --mat-sys-label-small: 500 0.688rem / 1rem var(--app-font-family);\n --mat-sys-label-small-font: var(--app-font-family);\n --mat-sys-label-small-line-height: 1rem;\n --mat-sys-label-small-size: 0.688rem;\n --mat-sys-label-small-tracking: 0.031rem;\n --mat-sys-label-small-weight: 500;\n --mat-sys-title-large: 400 1.375rem / 1.75rem var(--app-font-family);\n --mat-sys-title-large-font: var(--app-font-family);\n --mat-sys-title-large-line-height: 1.75rem;\n --mat-sys-title-large-size: 1.375rem;\n --mat-sys-title-large-tracking: 0;\n --mat-sys-title-large-weight: 400;\n --mat-sys-title-medium: 500 1rem / 1.5rem var(--app-font-family);\n --mat-sys-title-medium-font: var(--app-font-family);\n --mat-sys-title-medium-line-height: 1.5rem;\n --mat-sys-title-medium-size: 1rem;\n --mat-sys-title-medium-tracking: 0.009rem;\n --mat-sys-title-medium-weight: 500;\n --mat-sys-title-small: 500 0.875rem / 1.25rem var(--app-font-family);\n --mat-sys-title-small-font: var(--app-font-family);\n --mat-sys-title-small-line-height: 1.25rem;\n --mat-sys-title-small-size: 0.875rem;\n --mat-sys-title-small-tracking: 0.006rem;\n --mat-sys-title-small-weight: 500;\n --mat-sys-corner-extra-large: 28px;\n --mat-sys-corner-extra-large-top: 28px 28px 0 0;\n --mat-sys-corner-extra-small: 4px;\n --mat-sys-corner-extra-small-top: 4px 4px 0 0;\n --mat-sys-corner-full: 9999px;\n --mat-sys-corner-large: 16px;\n --mat-sys-corner-large-end: 0 16px 16px 0;\n --mat-sys-corner-large-start: 16px 0 0 16px;\n --mat-sys-corner-large-top: 16px 16px 0 0;\n --mat-sys-corner-medium: 12px;\n --mat-sys-corner-none: 0;\n --mat-sys-corner-small: 8px;\n --mat-sys-dragged-state-layer-opacity: 0.16;\n --mat-sys-focus-state-layer-opacity: 0.12;\n --mat-sys-hover-state-layer-opacity: 0.08;\n --mat-sys-pressed-state-layer-opacity: 0.12;\n}\n.filing .mat-primary .mat-pseudo-checkbox-checked,\n.filing .mat-primary .mat-pseudo-checkbox-indeterminate {\n background: transparent !important;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox {\n width: 24px;\n height: 24px;\n flex-basis: 24px;\n padding: 0;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__background {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n top: 0;\n left: 0;\n border: 3px solid var(--filing-modal-color-grey);\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__checkmark {\n height: 20px;\n width: 20px;\n font-size: 20px;\n top: 1px;\n left: 1px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-checkbox__ripple,\n.filing .mat-mdc-checkbox[cardView] .mat-ripple {\n display: none;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-label {\n padding-left: 8px;\n}\n.filing .mat-mdc-checkbox[cardView] .mdc-button__label {\n line-height: 10px;\n}\n/*# sourceMappingURL=material-theme.css.map */\n'] }]
|
|
89179
89212
|
}], () => [], null);
|
|
89180
89213
|
})();
|
|
89181
89214
|
(() => {
|
|
89182
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber:
|
|
89215
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber: 73 });
|
|
89183
89216
|
})();
|
|
89184
89217
|
}
|
|
89185
89218
|
});
|
|
@@ -93908,132 +93941,7 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
93908
93941
|
"Submit request": "Soumettre la demande",
|
|
93909
93942
|
"UI Mode": "Mode d'interface",
|
|
93910
93943
|
"UI mode": "Mode d'interface",
|
|
93911
|
-
North: "Nord",
|
|
93912
|
-
South: "Sud",
|
|
93913
|
-
East: "Est",
|
|
93914
|
-
West: "Ouest",
|
|
93915
|
-
Northeast: "Nord-Est",
|
|
93916
|
-
Northwest: "Nord-Ouest",
|
|
93917
|
-
Southeast: "Sud-Est",
|
|
93918
|
-
Southwest: "Sud-Ouest",
|
|
93919
93944
|
None: "Aucun",
|
|
93920
|
-
Limited: "Limit\xE9e",
|
|
93921
|
-
Ltd: "Lt\xE9e",
|
|
93922
|
-
Incorporated: "Incorpor\xE9e",
|
|
93923
|
-
Inc: "Inc.",
|
|
93924
|
-
Corporation: "Corporation",
|
|
93925
|
-
Corp: "Corp.",
|
|
93926
|
-
Abbey: "Abbaye",
|
|
93927
|
-
Acres: "Acres",
|
|
93928
|
-
Alley: "Ruelle",
|
|
93929
|
-
Avenue: "Avenue",
|
|
93930
|
-
Bay: "Baie",
|
|
93931
|
-
Beach: "Plage",
|
|
93932
|
-
Bend: "Courbe",
|
|
93933
|
-
Boulevard: "Boulevard",
|
|
93934
|
-
"By-pass": "Contournement",
|
|
93935
|
-
Byway: "Chemin secondaire",
|
|
93936
|
-
Campus: "Campus",
|
|
93937
|
-
Cape: "Cap",
|
|
93938
|
-
Centre: "Centre",
|
|
93939
|
-
Chase: "All\xE9e",
|
|
93940
|
-
Circle: "Cercle",
|
|
93941
|
-
Circuit: "Circuit",
|
|
93942
|
-
Close: "Fermer",
|
|
93943
|
-
Common: "Terrain commun",
|
|
93944
|
-
Concession: "Concession",
|
|
93945
|
-
Corners: "Carrefour",
|
|
93946
|
-
Court: "Cour",
|
|
93947
|
-
Cove: "Anse",
|
|
93948
|
-
Crescent: "Croissant",
|
|
93949
|
-
Crossing: "Croisement",
|
|
93950
|
-
"Cul-de-sac": "Cul-de-sac",
|
|
93951
|
-
Dale: "Vall\xE9e",
|
|
93952
|
-
Dell: "Vallon",
|
|
93953
|
-
Diversion: "D\xE9viation",
|
|
93954
|
-
Downs: "Collines",
|
|
93955
|
-
Drive: "All\xE9e priv\xE9e",
|
|
93956
|
-
Farm: "Ferme",
|
|
93957
|
-
Field: "Champ",
|
|
93958
|
-
Forest: "For\xEAt",
|
|
93959
|
-
Freeway: "Autoroute",
|
|
93960
|
-
Front: "Front",
|
|
93961
|
-
Gardens: "Jardins",
|
|
93962
|
-
Gate: "Portail",
|
|
93963
|
-
Glade: "Clairi\xE8re",
|
|
93964
|
-
Glen: "Vallon bois\xE9",
|
|
93965
|
-
Green: "Vert",
|
|
93966
|
-
Grounds: "Terrain",
|
|
93967
|
-
Grove: "Bosquet",
|
|
93968
|
-
Harbour: "Port",
|
|
93969
|
-
Heath: "Lande",
|
|
93970
|
-
Heights: "Hauteurs",
|
|
93971
|
-
Highlands: "Hautes-terres",
|
|
93972
|
-
Highway: "Route",
|
|
93973
|
-
Hill: "Colline",
|
|
93974
|
-
Hollow: "Creux",
|
|
93975
|
-
Inlet: "Anse",
|
|
93976
|
-
Island: "\xCEle",
|
|
93977
|
-
Key: "Quai",
|
|
93978
|
-
Knoll: "Monticule",
|
|
93979
|
-
Landing: "D\xE9barcad\xE8re",
|
|
93980
|
-
Lane: "Voie",
|
|
93981
|
-
Limits: "Limites",
|
|
93982
|
-
Line: "Ligne",
|
|
93983
|
-
Link: "Liaison",
|
|
93984
|
-
Lookout: "Belv\xE9d\xE8re",
|
|
93985
|
-
Loop: "Boucle",
|
|
93986
|
-
Mall: "Mail",
|
|
93987
|
-
Manor: "Manoir",
|
|
93988
|
-
Maze: "Labyrinthe",
|
|
93989
|
-
Meadow: "Prairie",
|
|
93990
|
-
Mews: "Ruelle",
|
|
93991
|
-
Moor: "Lande",
|
|
93992
|
-
Mount: "Mont",
|
|
93993
|
-
Mountain: "Montagne",
|
|
93994
|
-
Orchard: "Verger",
|
|
93995
|
-
Parade: "Promenade",
|
|
93996
|
-
Park: "Parc",
|
|
93997
|
-
Parkway: "Promenade parc",
|
|
93998
|
-
Passage: "Passage",
|
|
93999
|
-
Path: "Sentier",
|
|
94000
|
-
Pathway: "Sentier",
|
|
94001
|
-
Pines: "Pins",
|
|
94002
|
-
Place: "Place",
|
|
94003
|
-
Plateau: "Plateau",
|
|
94004
|
-
Plaza: "Plaza",
|
|
94005
|
-
Point: "Pointe",
|
|
94006
|
-
Port: "Port",
|
|
94007
|
-
Private: "Priv\xE9e",
|
|
94008
|
-
Promenade: "Promenade",
|
|
94009
|
-
Quay: "Quai",
|
|
94010
|
-
Ramp: "Rampe",
|
|
94011
|
-
Ridge: "Cr\xEAte",
|
|
94012
|
-
Rise: "Mont\xE9e",
|
|
94013
|
-
Road: "Route",
|
|
94014
|
-
Route: "Route",
|
|
94015
|
-
Row: "Rang\xE9e",
|
|
94016
|
-
Run: "Ruisseau",
|
|
94017
|
-
Square: "Square",
|
|
94018
|
-
Street: "Rue",
|
|
94019
|
-
Subdivision: "Subdivision",
|
|
94020
|
-
Terrace: "Terrasse",
|
|
94021
|
-
Thicket: "Hallier",
|
|
94022
|
-
Towers: "Tours",
|
|
94023
|
-
Townline: "Limite de canton",
|
|
94024
|
-
Trail: "Sentier",
|
|
94025
|
-
Turnabout: "Rond-point",
|
|
94026
|
-
Vale: "Val",
|
|
94027
|
-
Via: "Via",
|
|
94028
|
-
View: "Vue",
|
|
94029
|
-
Village: "Village",
|
|
94030
|
-
Villas: "Villas",
|
|
94031
|
-
Vista: "Panorama",
|
|
94032
|
-
Walk: "Promenade",
|
|
94033
|
-
Way: "Voie",
|
|
94034
|
-
Wharf: "Quai",
|
|
94035
|
-
Wood: "Bois",
|
|
94036
|
-
Wynd: "Ruelle",
|
|
94037
93945
|
"Save Changes": "Enregistrer les modifications",
|
|
94038
93946
|
"Supporting Documents": "Documents justificatifs",
|
|
94039
93947
|
"Upload supporting documents, e.g. Consents": "T\xE9l\xE9verser des documents justificatifs, p. ex. des consentements",
|