dhre-component-lib 0.3.8 → 0.3.9

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.
@@ -11,5 +11,6 @@ declare function Dropdown(props: {
11
11
  arrowUp: React.ReactNode;
12
12
  arrowDown: React.ReactNode;
13
13
  value?: value;
14
+ className?: string;
14
15
  }): React.JSX.Element;
15
16
  export default Dropdown;
@@ -1,10 +1,12 @@
1
- import React from 'react';
2
- import './Stepper.module.scss';
1
+ import React from "react";
2
+ import "./Stepper.module.scss";
3
3
  interface StepperData {
4
4
  name: string;
5
5
  id: number;
6
6
  component?: React.ReactNode;
7
7
  status?: string;
8
+ value?: string;
9
+ img?: React.ReactNode;
8
10
  }
9
11
  interface StepperInterface {
10
12
  stepperData: StepperData[];
@@ -19,6 +21,8 @@ interface StepperInterface {
19
21
  submittedDate?: React.ReactNode;
20
22
  dividerWidth?: string;
21
23
  variant?: any;
24
+ displayRightContent?: boolean;
25
+ isPaymentPlanFlow?: boolean;
22
26
  }
23
27
  declare const Stepper: React.FC<StepperInterface>;
24
28
  export default Stepper;
package/dist/index.d.ts CHANGED
@@ -288,6 +288,7 @@ declare function Dropdown(props: {
288
288
  arrowUp: React.ReactNode;
289
289
  arrowDown: React.ReactNode;
290
290
  value?: value;
291
+ className?: string;
291
292
  }): React.JSX.Element;
292
293
 
293
294
  declare function TextArea(props: {
@@ -380,6 +381,8 @@ interface StepperData {
380
381
  id: number;
381
382
  component?: React.ReactNode;
382
383
  status?: string;
384
+ value?: string;
385
+ img?: React.ReactNode;
383
386
  }
384
387
  interface StepperInterface {
385
388
  stepperData: StepperData[];
@@ -394,6 +397,8 @@ interface StepperInterface {
394
397
  submittedDate?: React.ReactNode;
395
398
  dividerWidth?: string;
396
399
  variant?: any;
400
+ displayRightContent?: boolean;
401
+ isPaymentPlanFlow?: boolean;
397
402
  }
398
403
  declare const Stepper: React.FC<StepperInterface>;
399
404