catchup-library-web 1.2.11 → 1.2.12
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/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
- package/src/components/images/BaseImage.tsx +3 -0
package/dist/index.js
CHANGED
|
@@ -331,6 +331,9 @@ var BaseImage = (props) => {
|
|
|
331
331
|
} else if (size === "3xlarge") {
|
|
332
332
|
currentWidthClassName = "w-16";
|
|
333
333
|
currentHeightClassName = "h-16";
|
|
334
|
+
} else if (size === "4xlarge") {
|
|
335
|
+
currentWidthClassName = "w-20";
|
|
336
|
+
currentHeightClassName = "h-20";
|
|
334
337
|
} else if (size === "custom") {
|
|
335
338
|
currentClassName = className;
|
|
336
339
|
currentWidthClassName = widthClassName;
|
package/dist/index.mjs
CHANGED
|
@@ -147,6 +147,9 @@ var BaseImage = (props) => {
|
|
|
147
147
|
} else if (size === "3xlarge") {
|
|
148
148
|
currentWidthClassName = "w-16";
|
|
149
149
|
currentHeightClassName = "h-16";
|
|
150
|
+
} else if (size === "4xlarge") {
|
|
151
|
+
currentWidthClassName = "w-20";
|
|
152
|
+
currentHeightClassName = "h-20";
|
|
150
153
|
} else if (size === "custom") {
|
|
151
154
|
currentClassName = className;
|
|
152
155
|
currentWidthClassName = widthClassName;
|
package/package.json
CHANGED
|
@@ -60,6 +60,9 @@ const BaseImage = (props: IBaseImageProps) => {
|
|
|
60
60
|
} else if (size === "3xlarge") {
|
|
61
61
|
currentWidthClassName = "w-16";
|
|
62
62
|
currentHeightClassName = "h-16";
|
|
63
|
+
} else if (size === "4xlarge") {
|
|
64
|
+
currentWidthClassName = "w-20";
|
|
65
|
+
currentHeightClassName = "h-20";
|
|
63
66
|
} else if (size === "custom") {
|
|
64
67
|
currentClassName = className;
|
|
65
68
|
currentWidthClassName = widthClassName;
|