optimized-react-component-library-xyz123 0.1.129 → 0.1.130
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -34,7 +34,7 @@ interface IFormState {
|
|
|
34
34
|
steps: Array<IStepObject>;
|
|
35
35
|
questions: Array<IQuestion>;
|
|
36
36
|
formLoaded: boolean;
|
|
37
|
-
|
|
37
|
+
formStatus: 'notloaded' | 'idle' | 'loading' | 'failed' | 'success';
|
|
38
38
|
}
|
|
39
39
|
interface IOption {
|
|
40
40
|
label: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ interface IFormState {
|
|
|
34
34
|
steps: Array<IStepObject>;
|
|
35
35
|
questions: Array<IQuestion>;
|
|
36
36
|
formLoaded: boolean;
|
|
37
|
-
|
|
37
|
+
formStatus: 'notloaded' | 'idle' | 'loading' | 'failed' | 'success';
|
|
38
38
|
}
|
|
39
39
|
interface IOption {
|
|
40
40
|
label: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optimized-react-component-library-xyz123",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.130",
|
|
4
4
|
"description": "A modern React component library using TypeScript with React 19 support.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"clsx": "^2.1.1",
|
|
71
71
|
"date-fns": "^4.1.0",
|
|
72
72
|
"dompurify": "^3.2.6",
|
|
73
|
+
"optimized-react-component-library-xyz123": "^0.1.129",
|
|
73
74
|
"react-bootstrap": "^2.10.10",
|
|
74
75
|
"react-dropzone": "^14.3.8"
|
|
75
76
|
}
|