@wyxos/vibe 3.1.31 → 3.1.33

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 CHANGED
@@ -219,6 +219,7 @@ Common behavior props:
219
219
 
220
220
  - `empty-state`
221
221
  - `fullscreen-aside`
222
+ - `fullscreen-footer`
222
223
  - `fullscreen-header-actions`
223
224
  - `fullscreen-overlay`
224
225
  - `fullscreen-status`
@@ -0,0 +1,22 @@
1
+ import type { VibeSurfaceStatusKind } from './viewer-core/surfaceSlots';
2
+ type __VLS_Props = {
3
+ showEndBadge?: boolean;
4
+ showStatus?: boolean;
5
+ statusKind?: VibeSurfaceStatusKind | null;
6
+ statusMessage?: string | null;
7
+ };
8
+ declare var __VLS_1: {}, __VLS_3: {};
9
+ type __VLS_Slots = {} & {
10
+ default?: (props: typeof __VLS_1) => any;
11
+ } & {
12
+ status?: (props: typeof __VLS_3) => any;
13
+ };
14
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ type __VLS_WithSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -3,7 +3,6 @@ type __VLS_Props = {
3
3
  loading?: boolean;
4
4
  paginationDetail?: string | null;
5
5
  showBackToList?: boolean;
6
- showEndBadge?: boolean;
7
6
  title?: string | null;
8
7
  total: number;
9
8
  };
@@ -33,6 +33,7 @@ interface FullscreenSurfaceProps {
33
33
  type __VLS_Slots = {
34
34
  'empty-state'?: (props: VibeEmptyStateSlotProps) => unknown;
35
35
  'fullscreen-aside'?: (props: VibeSurfaceSlotProps) => unknown;
36
+ 'fullscreen-footer'?: (props: VibeSurfaceSlotProps) => unknown;
36
37
  'fullscreen-header-actions'?: (props: VibeSurfaceSlotProps) => unknown;
37
38
  'fullscreen-overlay'?: (props: VibeSurfaceSlotProps) => unknown;
38
39
  'fullscreen-status'?: (props: VibeFullscreenStatusSlotProps) => unknown;
@@ -6,6 +6,7 @@ import type { VibeHandle, VibeProps } from './viewer-core/useViewer';
6
6
  type __VLS_Slots = {
7
7
  'empty-state'?: (props: VibeEmptyStateSlotProps) => unknown;
8
8
  'fullscreen-aside'?: (props: VibeSurfaceSlotProps) => unknown;
9
+ 'fullscreen-footer'?: (props: VibeSurfaceSlotProps) => unknown;
9
10
  'fullscreen-header-actions'?: (props: VibeSurfaceSlotProps) => unknown;
10
11
  'fullscreen-overlay'?: (props: VibeSurfaceSlotProps) => unknown;
11
12
  'fullscreen-status'?: (props: VibeFullscreenStatusSlotProps) => unknown;
@@ -15,6 +15,7 @@ export declare function useFullscreenSurfaceMedia(options: {
15
15
  }): {
16
16
  getAssetErrorKind: (item: VibeViewerItem) => unknown;
17
17
  getAssetErrorLabel: (item: VibeViewerItem) => string;
18
+ getFullscreenAudioCoverSource: (item: VibeViewerItem) => string | null;
18
19
  getFullscreenImageSource: (index: number, item: VibeViewerItem) => string | undefined;
19
20
  getFullscreenMediaPreload: (index: number) => "none" | "metadata";
20
21
  getFullscreenMediaSource: (index: number, item: VibeViewerItem) => string | undefined;