@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/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ declare const sizes: {
|
|
|
15
15
|
readonly sm: 12;
|
|
16
16
|
readonly md: 14;
|
|
17
17
|
readonly lg: 16;
|
|
18
|
-
readonly xl:
|
|
18
|
+
readonly xl: 20;
|
|
19
19
|
readonly xxl: 24;
|
|
20
20
|
readonly xxxl: 32;
|
|
21
21
|
readonly xxxxl: 40;
|
|
@@ -81,6 +81,7 @@ declare class Reward {
|
|
|
81
81
|
summary?: string;
|
|
82
82
|
redemptionMessage?: string;
|
|
83
83
|
visibilityCriteria?: string;
|
|
84
|
+
isLocked?: boolean;
|
|
84
85
|
}
|
|
85
86
|
type RewardCategory = {
|
|
86
87
|
name: string;
|
package/dist/native.js
CHANGED
|
@@ -1675,7 +1675,7 @@ var sizes = {
|
|
|
1675
1675
|
sm: 12,
|
|
1676
1676
|
md: 14,
|
|
1677
1677
|
lg: 16,
|
|
1678
|
-
xl:
|
|
1678
|
+
xl: 20,
|
|
1679
1679
|
xxl: 24,
|
|
1680
1680
|
xxxl: 32,
|
|
1681
1681
|
xxxxl: 40,
|
|
@@ -3759,11 +3759,7 @@ var ContentTileTitle = function () {
|
|
|
3759
3759
|
if (isHalfSize) {
|
|
3760
3760
|
if (title && !body)
|
|
3761
3761
|
return 3;
|
|
3762
|
-
if (title && body)
|
|
3763
|
-
return 1;
|
|
3764
3762
|
}
|
|
3765
|
-
if (artworkUrl)
|
|
3766
|
-
return 1;
|
|
3767
3763
|
if (!body)
|
|
3768
3764
|
return 7;
|
|
3769
3765
|
return 2;
|