@apexcura/ui-components 0.0.16-Beta138 → 0.0.16-Beta139

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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const CustomStepper: (props: ElementType) => React.JSX.Element;
@@ -19,6 +19,8 @@ type dropDownValueProps = {
19
19
  } | undefined;
20
20
  };
21
21
  export type ElementType = {
22
+ active?: number;
23
+ visitedClassName?: string;
22
24
  accept?: string | undefined;
23
25
  max_count?: number | undefined;
24
26
  multiple?: boolean | undefined;
@@ -70,7 +72,7 @@ export type ElementType = {
70
72
  dropDownOptions?: (number | string | boolean | object | null | undefined | (() => void))[];
71
73
  id?: number;
72
74
  thead?: {
73
- id: number;
75
+ id?: number;
74
76
  name?: string;
75
77
  label?: string;
76
78
  visible?: boolean;
@@ -94,10 +96,12 @@ export type ElementType = {
94
96
  listItemClassName?: string;
95
97
  img?: string;
96
98
  items?: {
97
- element: string;
99
+ id?: number;
100
+ key?: number | string;
101
+ element?: string;
98
102
  icon?: string;
99
103
  label?: string;
100
- active?: boolean;
104
+ active?: number;
101
105
  text?: string;
102
106
  time?: string;
103
107
  name?: string;