@wscsports/blaze-web-sdk 0.1.92 → 0.1.93
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/package.json +1 -1
- package/publish/index.d.ts +5 -2
- package/publish/index.js +1 -1
package/package.json
CHANGED
package/publish/index.d.ts
CHANGED
|
@@ -762,6 +762,7 @@ export interface IWidgetViewOptionsBase {
|
|
|
762
762
|
delegates?: Record<Delegation, EventListenerOrEventListenerObject>;
|
|
763
763
|
labelsPriority?: string;
|
|
764
764
|
perItemStyleOverrides?: PerItemStyleOverrides;
|
|
765
|
+
shouldOrderWidgetByReadStatus?: boolean;
|
|
765
766
|
}
|
|
766
767
|
export interface IWidgetViewOptionsWithLabels extends IWidgetViewOptionsBase {
|
|
767
768
|
labels: string | string[] | BlazeWidgetLabel;
|
|
@@ -1461,7 +1462,7 @@ export declare function AttributeParser<TBase extends GHTMLElement>(Base: TBase)
|
|
|
1461
1462
|
click(): void;
|
|
1462
1463
|
hidePopover(): void;
|
|
1463
1464
|
showPopover(): void;
|
|
1464
|
-
togglePopover(force?: boolean | undefined):
|
|
1465
|
+
togglePopover(force?: boolean | undefined): boolean;
|
|
1465
1466
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
1466
1467
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
1467
1468
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -1596,6 +1597,7 @@ export declare function AttributeParser<TBase extends GHTMLElement>(Base: TBase)
|
|
|
1596
1597
|
ariaColIndex: string | null;
|
|
1597
1598
|
ariaColSpan: string | null;
|
|
1598
1599
|
ariaCurrent: string | null;
|
|
1600
|
+
ariaDescription: string | null;
|
|
1599
1601
|
ariaDisabled: string | null;
|
|
1600
1602
|
ariaExpanded: string | null;
|
|
1601
1603
|
ariaHasPopup: string | null;
|
|
@@ -1666,6 +1668,7 @@ export declare function AttributeParser<TBase extends GHTMLElement>(Base: TBase)
|
|
|
1666
1668
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1667
1669
|
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1668
1670
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
1671
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1669
1672
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
1670
1673
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1671
1674
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -1817,7 +1820,7 @@ export type OrderType = 'Manual' | 'AtoZ' | 'ZtoA' | 'RecentlyUpdatedFirst' | 'R
|
|
|
1817
1820
|
export declare const PlayTypeArray: readonly ["Widget", "Share", "SingleStory"];
|
|
1818
1821
|
export type PlayType = typeof PlayTypeArray[number];
|
|
1819
1822
|
|
|
1820
|
-
export type PositionInsideType = 'insideTopLeft' | 'insideTopRight' | '
|
|
1823
|
+
export type PositionInsideType = 'insideTopLeft' | 'insideTopRight' | 'insideTop' | 'insideTopMiddle' | 'insideBottomRight' | 'insideBottomLeft' | 'insideBottom' | 'insideBottomMiddle' | 'insideMiddle' | 'insideMiddleLeft' | 'insideMiddleRight';
|
|
1821
1824
|
export type PositionOutsideType = 'outsideTop' | 'outsideTopLeft' | 'outsideTopRight' | 'outsideBottomLeft' | 'outsideBottomRight' | 'outsideBottom' | 'outsideRight' | 'outsideLeft';
|
|
1822
1825
|
export type PositionType = PositionInsideType | PositionOutsideType;
|
|
1823
1826
|
export interface PositionOffset {
|