lambda-ui-components 1.1.0 → 1.2.0

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/main.d.ts CHANGED
@@ -2537,12 +2537,6 @@ declare interface StepContentProps {
2537
2537
  index?: number;
2538
2538
  /** The content to be rendered */
2539
2539
  children: ReactNode;
2540
- /** Whether validation should be performed for this step */
2541
- validate?: boolean;
2542
- /** Whether the step content is currently valid */
2543
- isValid?: boolean;
2544
- /** Error message to display if validation fails */
2545
- errorMessage?: string;
2546
2540
  }
2547
2541
 
2548
2542
  export declare const Stepper: default_2.FC<StepperProps> & {