@mindly/ui-components 5.90.1 → 5.90.3
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/cjs/index.js +5 -5
- package/dist/cjs/lib/Inputs/CustomRadioButton/CustomRadioButton.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Typography/types.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib/Inputs/CustomRadioButton/CustomRadioButton.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Typography/types.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ type CustomRadioButtonProps = {
|
|
|
4
4
|
name?: string;
|
|
5
5
|
value?: string;
|
|
6
6
|
checked?: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
7
8
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
8
9
|
};
|
|
9
10
|
declare const CustomRadioButton: React.ForwardRefExoticComponent<CustomRadioButtonProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -22,6 +22,7 @@ export declare enum TypographyVariantsEnum {
|
|
|
22
22
|
Text14Regular = "Text/14 Regular",
|
|
23
23
|
Text13Semi = "Text/13 Semi",
|
|
24
24
|
Text13Regular = "Text/13 Regular",
|
|
25
|
+
Text13Regular150 = "Text/13 Regular/1.5",
|
|
25
26
|
Text12Regular = "Text/12 Regular",
|
|
26
27
|
Tabbar10Medium = "Tabbar/10 Medium",
|
|
27
28
|
Text8Regular = "Text/8 Regular",
|
package/dist/index.d.ts
CHANGED
|
@@ -1387,6 +1387,7 @@ type CustomRadioButtonProps = {
|
|
|
1387
1387
|
name?: string;
|
|
1388
1388
|
value?: string;
|
|
1389
1389
|
checked?: boolean;
|
|
1390
|
+
disabled?: boolean;
|
|
1390
1391
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1391
1392
|
};
|
|
1392
1393
|
declare const CustomRadioButton: React__default.ForwardRefExoticComponent<CustomRadioButtonProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
@@ -1441,6 +1442,7 @@ declare enum TypographyVariantsEnum {
|
|
|
1441
1442
|
Text14Regular = "Text/14 Regular",
|
|
1442
1443
|
Text13Semi = "Text/13 Semi",
|
|
1443
1444
|
Text13Regular = "Text/13 Regular",
|
|
1445
|
+
Text13Regular150 = "Text/13 Regular/1.5",
|
|
1444
1446
|
Text12Regular = "Text/12 Regular",
|
|
1445
1447
|
Tabbar10Medium = "Tabbar/10 Medium",
|
|
1446
1448
|
Text8Regular = "Text/8 Regular",
|