@socotra/ec-react-components 2.2.2-beta.64 → 2.2.2
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.ts +3 -3
- package/dist/index.es.js +6110 -6242
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +22 -22
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ declare type Props = {
|
|
|
47
47
|
disabled?: boolean;
|
|
48
48
|
/**
|
|
49
49
|
* Prevents the form from resetting when disabled
|
|
50
|
-
* default is
|
|
50
|
+
* default is true
|
|
51
51
|
*/
|
|
52
52
|
preventFormResetOnDisabled?: boolean;
|
|
53
53
|
/**
|
|
@@ -99,7 +99,7 @@ declare type Props_2 = {
|
|
|
99
99
|
disabled?: boolean;
|
|
100
100
|
/**
|
|
101
101
|
* Prevents the form from resetting when disabled
|
|
102
|
-
* default is
|
|
102
|
+
* default is true
|
|
103
103
|
*/
|
|
104
104
|
preventFormResetOnDisabled?: boolean;
|
|
105
105
|
/**
|
|
@@ -127,7 +127,7 @@ declare type Props_2 = {
|
|
|
127
127
|
* QuoteForm is a form for creating or updating an quote. It accepts a resolved data model, custom data types, and an optional quote object to put the form in update mode. References: https://rjsf-team.github.io/react-jsonschema-form/docs/
|
|
128
128
|
*/
|
|
129
129
|
export declare const QuoteForm: {
|
|
130
|
-
({ productType, productsModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled,
|
|
130
|
+
({ quote, productType, productsModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled, validateOnSubmit, hideSubmitButton, submitButtonText, id, }: Props_2): JSX_2.Element;
|
|
131
131
|
displayName: string;
|
|
132
132
|
};
|
|
133
133
|
|