feedly-widget 0.1.4 → 0.1.5
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/feedly-widget.cjs.js +122 -122
- package/dist/feedly-widget.es.js +5696 -5679
- package/dist/lib/anchor.d.ts +2 -0
- package/package.json +1 -1
package/dist/lib/anchor.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export declare function buildAnchor(shape: ShapeData): Anchor | null;
|
|
|
24
24
|
export declare function isAnchorBroken(anchor: Anchor | null): boolean;
|
|
25
25
|
export declare function isFixedElement(el: Element): boolean;
|
|
26
26
|
export declare function resolveAnchorEl(anchor: Anchor | null): Element | null;
|
|
27
|
+
export declare function isElementShowing(el: Element): boolean;
|
|
28
|
+
export declare function isAnchorVisible(anchor: Anchor | null): boolean;
|
|
27
29
|
export declare function resolveAnchoredShape(annotation: Annotation): ShapeData;
|
|
28
30
|
export declare function isAnchorFixed(anchor: Anchor | null): boolean;
|
|
29
31
|
export declare function anchorIframe(anchor: Anchor | null): HTMLIFrameElement | null;
|