@bluepic/embed 0.4.0-next.196 → 0.4.0-next.197

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.
@@ -1,11 +1,16 @@
1
1
  import { z } from '@hono/zod-openapi';
2
2
  import { Studio } from '@bluepic/types';
3
3
  import type { User } from '@auth0/auth0-vue';
4
+ import type { VNode } from 'vue';
4
5
  type __VLS_Props = {
5
6
  user: z.infer<typeof Studio.auth0UserViaManagementAPISchema> | User;
6
7
  showSettings?: boolean;
7
8
  };
8
- declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
9
+ type __VLS_Slots = {
10
+ /** Host content between the identity block and the Settings / Logout actions. */
11
+ default?: () => VNode[] | VNode;
12
+ };
13
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
9
14
  logout: () => any;
10
15
  settings: () => any;
11
16
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
@@ -14,4 +19,10 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
14
19
  }>, {
15
20
  showSettings: boolean;
16
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
17
23
  export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };