@socotra/ec-react-components 2.15.3-demo.0 → 2.15.3-demo.1
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 +16 -1
- package/dist/index.es.js +10870 -10851
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +26 -26
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -285,6 +285,21 @@ declare type Props_2 = {
|
|
|
285
285
|
* The text to display on the submit button
|
|
286
286
|
*/
|
|
287
287
|
submitButtonText?: string;
|
|
288
|
+
/**
|
|
289
|
+
* Whether to hide the default fields
|
|
290
|
+
* default is false
|
|
291
|
+
*/
|
|
292
|
+
hideDefaultFields?: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Whether to hide the advanced fields
|
|
295
|
+
* default is false
|
|
296
|
+
*/
|
|
297
|
+
hideAdvancedFields?: boolean;
|
|
298
|
+
/**
|
|
299
|
+
* Whether to hide the coverage terms fields
|
|
300
|
+
* default is false
|
|
301
|
+
*/
|
|
302
|
+
hideCoverageTerms?: boolean;
|
|
288
303
|
/**
|
|
289
304
|
* ID for the form wrapper
|
|
290
305
|
* */
|
|
@@ -858,7 +873,7 @@ declare type Props_9 = {
|
|
|
858
873
|
* QuoteForm is a form for updating a quote. It required a product data model, custom data types, and quote object to render the form.
|
|
859
874
|
*/
|
|
860
875
|
export declare const QuoteForm: {
|
|
861
|
-
({ quote, dataModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled, validateOnSubmit, hideSubmitButton, submitButtonText, id, titles, getEvaluatedConstraints, dependencyMap, hideAllFields, hiddenExceptions, }: Props_2): JSX_2.Element;
|
|
876
|
+
({ quote, dataModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled, validateOnSubmit, hideSubmitButton, hideDefaultFields, hideAdvancedFields, hideCoverageTerms, submitButtonText, id, titles, getEvaluatedConstraints, dependencyMap, hideAllFields, hiddenExceptions, }: Props_2): JSX_2.Element;
|
|
862
877
|
displayName: string;
|
|
863
878
|
};
|
|
864
879
|
|