@wyxos/vibe 3.1.8 → 3.1.9
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/README.md +1 -0
- package/lib/components/viewer-core/removalState.d.ts +1 -0
- package/lib/components/viewer-core/useAutoResolveSource.d.ts +1 -0
- package/lib/components/viewer-core/useController.d.ts +2 -0
- package/lib/components/viewer-core/useDataSource.d.ts +1 -0
- package/lib/index.cjs +1 -1
- package/lib/index.js +579 -576
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,6 +27,7 @@ export declare function useAutoResolveSource(options: {
|
|
|
27
27
|
currentCursor: import("vue").ComputedRef<string | null>;
|
|
28
28
|
errorMessage: Ref<string | null, string | null>;
|
|
29
29
|
fillCollectedCount: Ref<number | null, number | null>;
|
|
30
|
+
fillCursor: Ref<string | null, string | null>;
|
|
30
31
|
fillDelayRemainingMs: Ref<number | null, number | null>;
|
|
31
32
|
fillTargetCount: Ref<number | null, number | null>;
|
|
32
33
|
hasNextPage: import("vue").ComputedRef<boolean>;
|
|
@@ -20,6 +20,7 @@ export declare function useController(props: Readonly<VibeProps>, emit: VibeEmit
|
|
|
20
20
|
readonly currentCursor: string | null;
|
|
21
21
|
readonly errorMessage: string | null;
|
|
22
22
|
readonly fillCollectedCount: number | null;
|
|
23
|
+
readonly fillCursor: string | null;
|
|
23
24
|
readonly fillDelayRemainingMs: number | null;
|
|
24
25
|
readonly fillTargetCount: number | null;
|
|
25
26
|
readonly hasNextPage: boolean;
|
|
@@ -46,6 +47,7 @@ export declare function useController(props: Readonly<VibeProps>, emit: VibeEmit
|
|
|
46
47
|
currentCursor: import("vue").ComputedRef<string | null>;
|
|
47
48
|
errorMessage: import("vue").Ref<string | null, string | null>;
|
|
48
49
|
fillCollectedCount: import("vue").Ref<number | null, number | null>;
|
|
50
|
+
fillCursor: import("vue").Ref<string | null, string | null>;
|
|
49
51
|
fillDelayRemainingMs: import("vue").Ref<number | null, number | null>;
|
|
50
52
|
fillTargetCount: import("vue").Ref<number | null, number | null>;
|
|
51
53
|
getRemovedIds: () => string[];
|
|
@@ -48,6 +48,7 @@ export declare function useDataSource(props: Readonly<VibeProps>, emit: VibeEmit
|
|
|
48
48
|
currentCursor: import("vue").ComputedRef<string | null>;
|
|
49
49
|
errorMessage: import("vue").Ref<string | null, string | null>;
|
|
50
50
|
fillCollectedCount: import("vue").Ref<number | null, number | null>;
|
|
51
|
+
fillCursor: import("vue").Ref<string | null, string | null>;
|
|
51
52
|
fillDelayRemainingMs: import("vue").Ref<number | null, number | null>;
|
|
52
53
|
fillTargetCount: import("vue").Ref<number | null, number | null>;
|
|
53
54
|
getRemovedIds: () => string[];
|