@appcorp/fusion-storybook 0.1.13 → 0.1.15
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/base-modules/admission/context.js +172 -78
- package/base-modules/admission/page.js +39 -5
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/type.d.ts +2 -0
package/type.d.ts
CHANGED
|
@@ -349,12 +349,14 @@ export interface FatherDetails {
|
|
|
349
349
|
fatherMobile: string;
|
|
350
350
|
fatherOccupation: string;
|
|
351
351
|
fatherOrganization: string;
|
|
352
|
+
emergencyContact: boolean;
|
|
352
353
|
}
|
|
353
354
|
export interface MotherDetails {
|
|
354
355
|
motherCnic: string;
|
|
355
356
|
motherFirstName: string;
|
|
356
357
|
motherLastName: string;
|
|
357
358
|
motherMobile: string;
|
|
359
|
+
emergencyContact: boolean;
|
|
358
360
|
}
|
|
359
361
|
export interface HomeDetails {
|
|
360
362
|
address: string;
|