@wlloyalty/wll-react-sdk 1.0.67 → 1.0.68

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.
@@ -30,7 +30,5 @@ export declare const useTierTileStyles: () => {
30
30
  };
31
31
  name: {
32
32
  marginBottom: number;
33
- numberOfLines: number;
34
- ellipsizeMode: string;
35
33
  };
36
34
  };
package/dist/web.js CHANGED
@@ -9398,7 +9398,7 @@ var isValidColor = function (color) {
9398
9398
  * @returns Boolean indicating if theme is valid
9399
9399
  */
9400
9400
  var validateTheme = function (theme) {
9401
- var requiredColors = ['accent', 'background', 'errorPrimary', 'negative', 'pageButtonBackground', 'pageButtonText', 'positive', 'primary', 'surface', 'surfaceText', 'text'];
9401
+ var requiredColors = ['accent', 'background', 'primary', 'surface', 'surfaceText', 'positive', 'negative', 'text'];
9402
9402
  return requiredColors.every(function (color) {
9403
9403
  return theme[color] && isValidColor(theme[color]);
9404
9404
  });
@@ -23284,9 +23284,7 @@ var useTierTileStyles = function () {
23284
23284
  resizeMode: 'cover'
23285
23285
  },
23286
23286
  name: {
23287
- marginBottom: 0,
23288
- numberOfLines: 1,
23289
- ellipsizeMode: 'tail'
23287
+ marginBottom: 0
23290
23288
  }
23291
23289
  });
23292
23290
  };