master-components-react-ts 2.10.4 → 2.10.6
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.
|
@@ -7,6 +7,7 @@ export type DropdownItemType = {
|
|
|
7
7
|
customLabel?: React.ReactNode | ((item: any) => React.ReactNode);
|
|
8
8
|
selected?: boolean;
|
|
9
9
|
disabled?: boolean;
|
|
10
|
+
nestedItems?: DropdownItemType[];
|
|
10
11
|
[key: string]: any;
|
|
11
12
|
};
|
|
12
13
|
export interface DropdownProps extends FormInputProps {
|
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
import { StepIndicatorProps } from './StepIndicator.types';
|
|
2
|
-
declare const StepIndicator:
|
|
2
|
+
declare const StepIndicator: {
|
|
3
|
+
({ totalSteps, currentStep, completedSteps, descriptionData, onStepClick, filled }: StepIndicatorProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
propKeys: readonly ["totalSteps", "currentStep", "completedSteps", "descriptionData", "onStepClick", "filled"];
|
|
5
|
+
displayName: string;
|
|
6
|
+
description: string;
|
|
7
|
+
};
|
|
3
8
|
export default StepIndicator;
|