@wlloyalty/wll-react-sdk 1.5.0 → 1.5.1
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.d.ts +2 -1
- package/dist/native.js +1 -5
- package/dist/native.js.map +1 -1
- package/dist/types/types/wll.d.ts +1 -0
- package/dist/types/utils/styling.d.ts +1 -1
- package/dist/web.js +1 -3
- package/dist/web.js.map +1 -1
- package/package.json +1 -1
package/dist/web.js
CHANGED
|
@@ -8203,7 +8203,7 @@ var sizes = {
|
|
|
8203
8203
|
sm: 12,
|
|
8204
8204
|
md: 14,
|
|
8205
8205
|
lg: 16,
|
|
8206
|
-
xl:
|
|
8206
|
+
xl: 20,
|
|
8207
8207
|
xxl: 24,
|
|
8208
8208
|
xxxl: 32,
|
|
8209
8209
|
xxxxl: 40,
|
|
@@ -20644,9 +20644,7 @@ var ContentTileTitle = function () {
|
|
|
20644
20644
|
if (!title) return undefined;
|
|
20645
20645
|
if (isHalfSize) {
|
|
20646
20646
|
if (title && !body) return 3;
|
|
20647
|
-
if (title && body) return 1;
|
|
20648
20647
|
}
|
|
20649
|
-
if (artworkUrl) return 1;
|
|
20650
20648
|
if (!body) return 7;
|
|
20651
20649
|
return 2;
|
|
20652
20650
|
}, [title, body, artworkUrl, isHalfSize]);
|