GuidesAPI ReferenceRelease Notes
HomeLog InHome
Release Notes

0.1.94 - Web

Features

  1. Added a new property thumbnailBorderColor to the widgetLayout interface; it will allow you to modify the border color of the thumbnail.
  2. Modified three functions in the IWidgetView interface by adding a new parameter called options. The options' parameter is an ISetWidgetOptions interface that has a property named shouldReloadData; This flag will prevent the SDK from loading new data from the server. To load new data, you can use the reload function.
    setLabels: (labels: string | string[] | BlazeWidgetLabel, options?: ISetWidgetOptions) =>void; setLabelsPriority: (labelsPriority: string, options?: ISetWidgetOptions) => void; setContentIds: (storyIds: string[], options?: ISetWidgetOptions) => void;
    interface ISetWidgetOptions { shouldReloadData?: boolean }
  3. Added a new property to IBlazeSDKOptions called shouldModifyUrlWithStoryId. If set to false, it will not update the URL with the story ID but will still retain the share functionality.

Bug Fixes

  1. Fixed the container height calculation for the widget layout.
  2. Adjusted the position of the story title, which was incorrect after changing the container height.
  3. Corrected the height size of the label by converting rem and em values to specific numeric values.