add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

28
node_modules/rc-steps/lib/Step.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import * as React from 'react';
import type { Status, Icons } from './interface';
import type { StepIconRender, ProgressDotRender } from './Steps';
export interface StepProps {
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
wrapperStyle?: React.CSSProperties;
iconPrefix?: string;
active?: boolean;
disabled?: boolean;
stepIndex?: number;
stepNumber?: number;
status?: Status;
title?: React.ReactNode;
subTitle?: React.ReactNode;
description?: React.ReactNode;
tailContent?: React.ReactNode;
icon?: React.ReactNode;
icons?: Icons;
onClick?: React.MouseEventHandler<HTMLDivElement>;
onStepClick?: (index: number) => void;
progressDot?: ProgressDotRender | boolean;
stepIcon?: StepIconRender;
render?: (stepItem: React.ReactElement) => React.ReactNode;
}
declare function Step(props: StepProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
export default Step;