@mosip/json-form-builder 0.1.1-beta.5 → 0.1.1-beta.6
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/dist/types.d.ts
CHANGED
|
@@ -80,6 +80,8 @@ export interface FormConfig {
|
|
|
80
80
|
[id: string]: Label;
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
|
+
resetPasswordChallengeFields: string[];
|
|
84
|
+
prefilledValues?: Record<string, any>;
|
|
83
85
|
}
|
|
84
86
|
export interface FileUploadData {
|
|
85
87
|
value: string | Blob;
|
|
@@ -136,4 +138,5 @@ export interface FormState {
|
|
|
136
138
|
[id: string]: Label;
|
|
137
139
|
};
|
|
138
140
|
isFormInitialized: boolean;
|
|
141
|
+
prefilledValues?: Record<string, any>;
|
|
139
142
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mosip/json-form-builder",
|
|
3
|
-
"version": "0.1.1-beta.
|
|
3
|
+
"version": "0.1.1-beta.6",
|
|
4
4
|
"description": "A dynamic JSON form builder with multi-language support, validation, and responsive design",
|
|
5
5
|
"main": "dist/JsonFormBuilder.umd.js",
|
|
6
6
|
"module": "dist/JsonFormBuilder.esm.js",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"@storybook/test": "8.6.15",
|
|
53
53
|
"@testing-library/jest-dom": "^6.6.3",
|
|
54
54
|
"@types/jest": "^29.5.12",
|
|
55
|
+
"@types/mime-types": "^3.0.1",
|
|
55
56
|
"@types/react": "^18.2.55",
|
|
56
57
|
"@types/react-dom": "^18.2.19",
|
|
57
58
|
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"prettier": "^3.2.5",
|
|
65
66
|
"rimraf": "^5.0.5",
|
|
66
67
|
"rollup": "^4.9.6",
|
|
68
|
+
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
67
69
|
"ts-jest": "^29.1.2",
|
|
68
70
|
"tslib": "^2.8.1",
|
|
69
71
|
"typescript": "^5.3.3",
|
|
@@ -74,6 +76,7 @@
|
|
|
74
76
|
"react-dom": "^18.2.0"
|
|
75
77
|
},
|
|
76
78
|
"dependencies": {
|
|
77
|
-
"date-fns": "^4.1.0"
|
|
79
|
+
"date-fns": "^4.1.0",
|
|
80
|
+
"mime-types": "^3.0.2"
|
|
78
81
|
}
|
|
79
82
|
}
|