@namiml/web-sdk 3.3.9 → 3.4.0-dev.202603232321
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/components/Paywall.d.ts +7 -1
- package/dist/nami-web.cjs +82 -32
- package/dist/nami-web.mjs +82 -32
- package/dist/nami-web.umd.js +61 -11
- package/dist/types/paywall.d.ts +1 -0
- package/package.json +1 -1
|
@@ -29,11 +29,16 @@ declare class PaywallComponent extends LitElement {
|
|
|
29
29
|
setPaywallData(): void;
|
|
30
30
|
private getPresentationStyle;
|
|
31
31
|
private get isHalfSheet();
|
|
32
|
+
private get isSheet();
|
|
33
|
+
private get isOverlaySheet();
|
|
32
34
|
connectedCallback(): void;
|
|
33
35
|
disconnectedCallback(): void;
|
|
36
|
+
private _stylesAlreadySaved;
|
|
34
37
|
private setOriginalStyles;
|
|
35
38
|
private restoreStyles;
|
|
36
39
|
private handleKeyDownEvent;
|
|
40
|
+
private handleBackdropClick;
|
|
41
|
+
private animateSheetDismiss;
|
|
37
42
|
private handleSwipeEvent;
|
|
38
43
|
private setupHalfSheetDragTracking;
|
|
39
44
|
private setupHalfSheetFocusTrap;
|
|
@@ -42,8 +47,9 @@ declare class PaywallComponent extends LitElement {
|
|
|
42
47
|
static styles: import("lit").CSSResult[];
|
|
43
48
|
private getAnimationStyles;
|
|
44
49
|
private updatePages;
|
|
50
|
+
private animateFullscreenEntry;
|
|
51
|
+
private animateFullscreenExitOverlay;
|
|
45
52
|
flowNavigateToScreen(next: IPaywall, animation: NamiFlowAnimation): Promise<void>;
|
|
46
|
-
private animateHalfSheetExpand;
|
|
47
53
|
getSelectedSlideIndexForCurrentCarousel(): number | undefined;
|
|
48
54
|
private renderFlow;
|
|
49
55
|
private renderHalfSheet;
|