@socotra/ec-react-components 2.13.0-demo.2 → 2.13.0-demo.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/index.d.ts CHANGED
@@ -352,6 +352,14 @@ declare type Props_2 = {
352
352
  * }
353
353
  */
354
354
  getEvaluatedConstraints?: (request: EvaluateConstraintsRequest, tenantLocator: string, locator: string) => Promise<ConstraintEvaluationResponse | undefined>;
355
+ /**
356
+ * Whether to hide all fields
357
+ */
358
+ hideAllFields?: boolean;
359
+ /**
360
+ * The hidden exception for the form
361
+ */
362
+ hiddenExceptions?: string[];
355
363
  /**
356
364
  * Titles for the form
357
365
  */
@@ -861,7 +869,7 @@ declare type Props_9 = {
861
869
  * QuoteForm is a form for updating a quote. It required a product data model, custom data types, and quote object to render the form.
862
870
  */
863
871
  export declare const QuoteForm: {
864
- ({ quote, dataModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled, validateOnSubmit, hideSubmitButton, submitButtonText, id, titles, getEvaluatedConstraints, dependencyMap, }: Props_2): JSX_2.Element;
872
+ ({ quote, dataModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled, validateOnSubmit, hideSubmitButton, submitButtonText, id, titles, getEvaluatedConstraints, dependencyMap, hideAllFields, hiddenExceptions, }: Props_2): JSX_2.Element;
865
873
  displayName: string;
866
874
  };
867
875