lambda-ui-components 1.2.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 +5 -3
- package/dist/main.mjs +5392 -5369
- package/dist/main.umd.js +67 -67
- package/package.json +1 -1
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:
|
|
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<
|
|
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;
|