catchup-library-web 1.10.5 → 1.10.7
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/package.json
CHANGED
|
@@ -65,6 +65,12 @@ const BaseImage = forwardRef<HTMLImageElement, IBaseImageProps>(
|
|
|
65
65
|
} else if (size === "4xlarge") {
|
|
66
66
|
currentWidthClassName = "w-20";
|
|
67
67
|
currentHeightClassName = "h-20";
|
|
68
|
+
} else if (size === "5xlarge") {
|
|
69
|
+
currentWidthClassName = "w-24";
|
|
70
|
+
currentHeightClassName = "h-24";
|
|
71
|
+
} else if (size === "6xlarge") {
|
|
72
|
+
currentWidthClassName = "w-28";
|
|
73
|
+
currentHeightClassName = "h-28";
|
|
68
74
|
} else if (size === "custom") {
|
|
69
75
|
currentClassName = className;
|
|
70
76
|
currentWidthClassName = widthClassName;
|
|
@@ -116,6 +122,8 @@ interface IBaseImageProps {
|
|
|
116
122
|
| "2xlarge"
|
|
117
123
|
| "3xlarge"
|
|
118
124
|
| "4xlarge"
|
|
125
|
+
| "5xlarge"
|
|
126
|
+
| "6xlarge"
|
|
119
127
|
| "custom";
|
|
120
128
|
className?: string;
|
|
121
129
|
widthClassName?: string;
|