@idsoftsource/initial-process 1.3.1 → 1.3.3
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/index.d.ts
CHANGED
|
@@ -1277,6 +1277,8 @@ declare class EducationComponent implements OnInit {
|
|
|
1277
1277
|
originalFormValue: any;
|
|
1278
1278
|
fileChanged: boolean;
|
|
1279
1279
|
user: any;
|
|
1280
|
+
isAdding: i0.WritableSignal<boolean>;
|
|
1281
|
+
showedit: boolean;
|
|
1280
1282
|
private readonly uploadToAws;
|
|
1281
1283
|
educationForm: FormGroup;
|
|
1282
1284
|
providerId: string;
|
|
@@ -1316,10 +1318,12 @@ declare class EducationComponent implements OnInit {
|
|
|
1316
1318
|
private saveAWSFile;
|
|
1317
1319
|
saveAndContinue(): void;
|
|
1318
1320
|
refreshForEdit(): void;
|
|
1319
|
-
add(): void;
|
|
1320
1321
|
edit(index: number): void;
|
|
1321
1322
|
back(): void;
|
|
1322
1323
|
nextStep(): void;
|
|
1324
|
+
handleLeftButton(): void;
|
|
1325
|
+
add(): void;
|
|
1326
|
+
cancelForm(): void;
|
|
1323
1327
|
static ɵfac: i0.ɵɵFactoryDeclaration<EducationComponent, never>;
|
|
1324
1328
|
static ɵcmp: i0.ɵɵComponentDeclaration<EducationComponent, "app-education", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1325
1329
|
}
|
|
@@ -1384,6 +1388,8 @@ declare class CertificationComponent {
|
|
|
1384
1388
|
private http;
|
|
1385
1389
|
originalFormValue: any;
|
|
1386
1390
|
states: any[];
|
|
1391
|
+
isAdding: i0.WritableSignal<boolean>;
|
|
1392
|
+
showedit: boolean;
|
|
1387
1393
|
fileChanged: boolean;
|
|
1388
1394
|
user: any;
|
|
1389
1395
|
private readonly uploadToAws;
|
|
@@ -1433,9 +1439,11 @@ declare class CertificationComponent {
|
|
|
1433
1439
|
hasChanges(): boolean;
|
|
1434
1440
|
private saveAWSFile;
|
|
1435
1441
|
saveAndContinue(): void;
|
|
1436
|
-
add(): void;
|
|
1437
1442
|
back(): void;
|
|
1438
1443
|
nextStep(): void;
|
|
1444
|
+
handleLeftButton(): void;
|
|
1445
|
+
add(): void;
|
|
1446
|
+
cancelForm(): void;
|
|
1439
1447
|
static ɵfac: i0.ɵɵFactoryDeclaration<CertificationComponent, never>;
|
|
1440
1448
|
static ɵcmp: i0.ɵɵComponentDeclaration<CertificationComponent, "app-certification", never, { "states": { "alias": "states"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1441
1449
|
}
|
|
@@ -1663,6 +1671,8 @@ declare class LicensesComponent {
|
|
|
1663
1671
|
fileChanged: boolean;
|
|
1664
1672
|
user: any;
|
|
1665
1673
|
states: any[];
|
|
1674
|
+
isAdding: i0.WritableSignal<boolean>;
|
|
1675
|
+
showedit: boolean;
|
|
1666
1676
|
private readonly uploadToAws;
|
|
1667
1677
|
editingIndex: number;
|
|
1668
1678
|
selectedDocumentTypeId: string | null;
|
|
@@ -1704,10 +1714,12 @@ declare class LicensesComponent {
|
|
|
1704
1714
|
hasChanges(): boolean;
|
|
1705
1715
|
private saveAWSFile;
|
|
1706
1716
|
saveAndContinue(): void;
|
|
1707
|
-
add(): void;
|
|
1708
1717
|
isChecked(id: string): boolean;
|
|
1709
1718
|
back(): void;
|
|
1710
1719
|
nextStep(): void;
|
|
1720
|
+
handleLeftButton(): void;
|
|
1721
|
+
add(): void;
|
|
1722
|
+
cancelForm(): void;
|
|
1711
1723
|
static ɵfac: i0.ɵɵFactoryDeclaration<LicensesComponent, never>;
|
|
1712
1724
|
static ɵcmp: i0.ɵɵComponentDeclaration<LicensesComponent, "app-licenses", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; "states": { "alias": "states"; "required": false; }; }, {}, never, never, false, never>;
|
|
1713
1725
|
}
|
|
@@ -2121,6 +2133,8 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2121
2133
|
originalFormValue: any;
|
|
2122
2134
|
fileChanged: boolean;
|
|
2123
2135
|
user: any;
|
|
2136
|
+
isAdding: i0.WritableSignal<boolean>;
|
|
2137
|
+
showedit: boolean;
|
|
2124
2138
|
providerId: string;
|
|
2125
2139
|
maxDate: Date;
|
|
2126
2140
|
providerName: string;
|
|
@@ -2160,9 +2174,11 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2160
2174
|
removeFile(): void;
|
|
2161
2175
|
edit(index: number): void;
|
|
2162
2176
|
saveAndContinue(): void;
|
|
2163
|
-
add(): void;
|
|
2164
2177
|
back(): void;
|
|
2165
2178
|
nextStep(): void;
|
|
2179
|
+
handleLeftButton(): void;
|
|
2180
|
+
add(): void;
|
|
2181
|
+
cancelForm(): void;
|
|
2166
2182
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkexperienceComponent, never>;
|
|
2167
2183
|
static ɵcmp: i0.ɵɵComponentDeclaration<WorkexperienceComponent, "app-workexperience", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
2168
2184
|
}
|