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.
- package/dist/components/Dropdown/Dropdown.d.ts +1 -0
- package/dist/components/Stepper/Stepper.d.ts +6 -2
- package/dist/index.d.ts +5 -0
- package/dist/index.esm.js +5861 -197
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5860 -199
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import
|
|
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
|
|