@a-vision-software/vue-input-components 1.4.7 → 1.4.8

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,6 +1,6 @@
1
1
  import { ListProps } from '../types/list';
2
2
 
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ListProps>, {
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ListProps>, {
4
4
  presentation: string;
5
5
  loading: boolean;
6
6
  width: string;
@@ -24,7 +24,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
24
24
  presentation: "default" | "minimal";
25
25
  width: string;
26
26
  loading: boolean;
27
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
28
+ header_extras?(_: {}): any;
29
+ }>;
28
30
  export default _default;
29
31
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
30
32
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -43,3 +45,8 @@ type __VLS_WithDefaults<P, D> = {
43
45
  type __VLS_Prettify<T> = {
44
46
  [K in keyof T]: T[K];
45
47
  } & {};
48
+ type __VLS_WithTemplateSlots<T, S> = T & {
49
+ new (): {
50
+ $slots: S;
51
+ };
52
+ };