lambda-ui-components 1.1.0 → 1.3.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
@@ -2170,9 +2170,11 @@ export declare const Radio: default_2.ForwardRefExoticComponent<RadioProps & def
2170
2170
  } & default_2.RefAttributes<HTMLInputElement>>;
2171
2171
  };
2172
2172
 
2173
- export declare const RadioGroup: FC<PropsWithChildren<RadioGroupProps>>;
2173
+ export declare const RadioGroup: default_2.ForwardRefExoticComponent<RadioGroupProps & {
2174
+ children?: ReactNode | undefined;
2175
+ } & default_2.RefAttributes<HTMLDivElement>>;
2174
2176
 
2175
- export declare interface RadioGroupProps {
2177
+ export declare interface RadioGroupProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue" | "color"> {
2176
2178
  /**
2177
2179
  * Defines the layout direction of the radio buttons within the group (e.g., 'horizontal' or 'vertical').
2178
2180
  */
@@ -2318,7 +2320,7 @@ declare interface ScriptProps extends React_2.DetailedHTMLProps<React_2.ScriptHT
2318
2320
  [dataAttribute: DataAttribute]: any;
2319
2321
  }
2320
2322
 
2321
- export declare const Select: default_2.ForwardRefExoticComponent<SelectProps & default_2.RefAttributes<HTMLDivElement>>;
2323
+ export declare const Select: default_2.ForwardRefExoticComponent<SelectProps & default_2.RefAttributes<HTMLButtonElement>>;
2322
2324
 
2323
2325
  declare const selectContainerVariants: (props?: ({
2324
2326
  size?: "tiny" | "small" | "medium" | "large" | null | undefined;
@@ -2537,12 +2539,6 @@ declare interface StepContentProps {
2537
2539
  index?: number;
2538
2540
  /** The content to be rendered */
2539
2541
  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
2542
  }
2547
2543
 
2548
2544
  export declare const Stepper: default_2.FC<StepperProps> & {