@jswork/react-ant-form-schema 1.0.2 → 1.0.4
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/main.cjs.js +21 -21
- package/dist/main.cjs.js.map +1 -1
- package/dist/main.d.mts +1 -5
- package/dist/main.d.ts +2 -4
- package/dist/main.esm.js +21 -21
- package/dist/main.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/index.tsx +20 -16
- package/src/main.tsx +2 -0
package/dist/main.d.mts
CHANGED
|
@@ -24,11 +24,7 @@ type ReactAntdFormSchemaProps = {
|
|
|
24
24
|
* The form content.
|
|
25
25
|
*/
|
|
26
26
|
footerClassName?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Form loading status.
|
|
29
|
-
*/
|
|
30
|
-
loading?: boolean;
|
|
31
27
|
} & FormProps;
|
|
32
28
|
declare const ReactAntdFormSchema: FC<ReactAntdFormSchemaProps>;
|
|
33
29
|
|
|
34
|
-
export { ReactAntdFormSchema as default };
|
|
30
|
+
export { type ReactAntdFormSchemaProps, ReactAntdFormSchema as default };
|
package/dist/main.d.ts
CHANGED
|
@@ -24,11 +24,9 @@ type ReactAntdFormSchemaProps = {
|
|
|
24
24
|
* The form content.
|
|
25
25
|
*/
|
|
26
26
|
footerClassName?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Form loading status.
|
|
29
|
-
*/
|
|
30
|
-
loading?: boolean;
|
|
31
27
|
} & FormProps;
|
|
32
28
|
declare const ReactAntdFormSchema: FC<ReactAntdFormSchemaProps>;
|
|
33
29
|
|
|
30
|
+
// @ts-ignore
|
|
34
31
|
export = ReactAntdFormSchema;
|
|
32
|
+
export type { ReactAntdFormSchemaProps };
|