hplx-react-elements-dev 1.2.5 → 1.2.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.
- package/dist/esm/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/esm/types.d.ts
CHANGED
|
@@ -200,7 +200,7 @@ export interface ButtonProps extends React.DetailedHTMLProps<React.ButtonHTMLAtt
|
|
|
200
200
|
export type checkboxSizeType = "sm" | "md";
|
|
201
201
|
export interface CheckboxProps {
|
|
202
202
|
size?: checkboxSizeType;
|
|
203
|
-
text:
|
|
203
|
+
text: ReactNode;
|
|
204
204
|
secondaryText?: string;
|
|
205
205
|
disabled?: boolean;
|
|
206
206
|
onClick?: (id: CheckboxProps) => void;
|
|
@@ -324,7 +324,7 @@ export interface RadioBtnProps {
|
|
|
324
324
|
size: RadioBtnSizeType;
|
|
325
325
|
disabled: boolean;
|
|
326
326
|
iconfile: RadioBtnType;
|
|
327
|
-
text:
|
|
327
|
+
text: ReactNode;
|
|
328
328
|
secondaryText: string;
|
|
329
329
|
id: any;
|
|
330
330
|
value: string;
|