@wyxos/vibe 5.5.1 → 5.5.3
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/lib/core/autofillController.d.ts +1 -1
- package/lib/core/feedFooter.d.ts +1 -0
- package/lib/core/fillController.d.ts +16 -1
- package/lib/core/fillReconciliation.d.ts +16 -0
- package/lib/core/reelForwardController.d.ts +1 -2
- package/lib/core/removalControllers.d.ts +1 -2
- package/lib/core/removalReconciliationController.d.ts +3 -1
- package/lib/core/runtime.d.ts +1 -0
- package/lib/index.cjs +1 -1
- package/lib/index.js +285 -194
- package/lib/types.d.ts +3 -0
- package/package.json +1 -1
package/lib/types.d.ts
CHANGED
|
@@ -159,6 +159,7 @@ export interface VibeRoutingOptions {
|
|
|
159
159
|
router: Router;
|
|
160
160
|
}
|
|
161
161
|
export interface VibePage {
|
|
162
|
+
current?: VibeCursor;
|
|
162
163
|
items: VibeItem[];
|
|
163
164
|
next: VibeCursor;
|
|
164
165
|
total?: number;
|
|
@@ -363,6 +364,7 @@ export interface VibeState {
|
|
|
363
364
|
layout: VibeLayout;
|
|
364
365
|
lifecycle: VibeLifecycle;
|
|
365
366
|
loadMoreLocked: boolean;
|
|
367
|
+
current: VibeCursor;
|
|
366
368
|
next: VibeCursor;
|
|
367
369
|
nextPageError: unknown | null;
|
|
368
370
|
phoneMode: boolean;
|
|
@@ -389,6 +391,7 @@ export interface VibeInstance {
|
|
|
389
391
|
pauseAutoScroll: () => void;
|
|
390
392
|
previousReelMediaItem: () => boolean;
|
|
391
393
|
previousReelPost: () => boolean;
|
|
394
|
+
replenishAfterRemoval: () => Promise<void>;
|
|
392
395
|
refresh: () => Promise<void>;
|
|
393
396
|
reload: () => Promise<void>;
|
|
394
397
|
removeMedia: (target: VibeMediaTarget) => VibeMediaRemoval | null;
|