@socotra/ec-react-components 2.13.0-demo.9 → 2.13.0

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
@@ -74,6 +74,10 @@ declare type BaseProps = {
74
74
  * The invoice documents available for the account
75
75
  */
76
76
  invoiceDocument?: string[];
77
+ /**
78
+ * The installment plans available for the account
79
+ */
80
+ installmentPlans?: string[];
77
81
  };
78
82
  /**
79
83
  * Set to true when the form is submitting to set fields to readonly and disable the submit button
@@ -114,6 +118,13 @@ declare type BaseProps = {
114
118
  seeAdvancedDetails?: string;
115
119
  truthyLabel?: string;
116
120
  falsyLabel?: string;
121
+ autoRenewalPlanName?: string;
122
+ delinquencyPlanName?: string;
123
+ excessCreditPlanName?: string;
124
+ shortfallTolerancePlanName?: string;
125
+ billingLevel?: string;
126
+ invoiceDocument?: string;
127
+ installmentPlanName?: string;
117
128
  };
118
129
  };
119
130
 
@@ -352,14 +363,6 @@ declare type Props_2 = {
352
363
  * }
353
364
  */
354
365
  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[];
363
366
  /**
364
367
  * Titles for the form
365
368
  */
@@ -417,10 +420,6 @@ declare type Props_3 = {
417
420
  * The element object from the quote
418
421
  */
419
422
  element: ElementResponse;
420
- /**
421
- * The quote object, used to logically render fields based on other quote elements
422
- */
423
- quote?: QuoteResponse;
424
423
  /**
425
424
  * Hides the submit button
426
425
  */
@@ -869,7 +868,7 @@ declare type Props_9 = {
869
868
  * QuoteForm is a form for updating a quote. It required a product data model, custom data types, and quote object to render the form.
870
869
  */
871
870
  export declare const QuoteForm: {
872
- ({ quote, dataModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled, validateOnSubmit, hideSubmitButton, submitButtonText, id, titles, getEvaluatedConstraints, dependencyMap, hideAllFields, hiddenExceptions, }: Props_2): JSX_2.Element;
871
+ ({ quote, dataModel, dataTypes, disabled, handleSubmit, isSubmitting, preventFormResetOnDisabled, validateOnSubmit, hideSubmitButton, submitButtonText, id, titles, getEvaluatedConstraints, dependencyMap, }: Props_2): JSX_2.Element;
873
872
  displayName: string;
874
873
  };
875
874