@point-hub/papp 0.0.87 → 0.0.89

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.
@@ -22,27 +22,115 @@ declare function __VLS_template(): {
22
22
  suffix?(_: {}): any;
23
23
  prefix?(_: {}): any;
24
24
  };
25
- declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
26
- border: string;
27
- layout: string;
28
- type: string;
29
- autofocus: boolean;
30
- required: boolean;
31
- readonly: boolean;
32
- disabled: boolean;
33
- }>>, {
25
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
26
+ errors: import("vue").PropType<string[]>;
27
+ type: {
28
+ type: import("vue").PropType<BaseInputType>;
29
+ default: string;
30
+ };
31
+ required: {
32
+ type: import("vue").PropType<boolean>;
33
+ default: boolean;
34
+ };
35
+ label: {
36
+ type: import("vue").PropType<string>;
37
+ };
38
+ disabled: {
39
+ type: import("vue").PropType<boolean>;
40
+ default: boolean;
41
+ };
42
+ id: {
43
+ type: import("vue").PropType<string>;
44
+ };
45
+ modelValue: {
46
+ type: import("vue").PropType<string>;
47
+ required: true;
48
+ };
49
+ description: {
50
+ type: import("vue").PropType<string>;
51
+ };
52
+ layout: {
53
+ type: import("vue").PropType<BaseFormLayoutType>;
54
+ default: string;
55
+ };
56
+ helpers: {
57
+ type: import("vue").PropType<string[]>;
58
+ };
59
+ placeholder: {
60
+ type: import("vue").PropType<string>;
61
+ };
62
+ border: {
63
+ type: import("vue").PropType<BaseInputBorderType>;
64
+ default: string;
65
+ };
66
+ autofocus: {
67
+ type: import("vue").PropType<boolean>;
68
+ default: boolean;
69
+ };
70
+ readonly: {
71
+ type: import("vue").PropType<boolean>;
72
+ default: boolean;
73
+ };
74
+ maxlength: {
75
+ type: import("vue").PropType<number>;
76
+ };
77
+ }>, {
34
78
  inputRef: import("vue").Ref<any, any>;
35
79
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
80
  "update:modelValue": (value: string) => void;
37
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
38
- border: string;
39
- layout: string;
40
- type: string;
41
- autofocus: boolean;
42
- required: boolean;
43
- readonly: boolean;
44
- disabled: boolean;
45
- }>>> & Readonly<{
81
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
82
+ errors: import("vue").PropType<string[]>;
83
+ type: {
84
+ type: import("vue").PropType<BaseInputType>;
85
+ default: string;
86
+ };
87
+ required: {
88
+ type: import("vue").PropType<boolean>;
89
+ default: boolean;
90
+ };
91
+ label: {
92
+ type: import("vue").PropType<string>;
93
+ };
94
+ disabled: {
95
+ type: import("vue").PropType<boolean>;
96
+ default: boolean;
97
+ };
98
+ id: {
99
+ type: import("vue").PropType<string>;
100
+ };
101
+ modelValue: {
102
+ type: import("vue").PropType<string>;
103
+ required: true;
104
+ };
105
+ description: {
106
+ type: import("vue").PropType<string>;
107
+ };
108
+ layout: {
109
+ type: import("vue").PropType<BaseFormLayoutType>;
110
+ default: string;
111
+ };
112
+ helpers: {
113
+ type: import("vue").PropType<string[]>;
114
+ };
115
+ placeholder: {
116
+ type: import("vue").PropType<string>;
117
+ };
118
+ border: {
119
+ type: import("vue").PropType<BaseInputBorderType>;
120
+ default: string;
121
+ };
122
+ autofocus: {
123
+ type: import("vue").PropType<boolean>;
124
+ default: boolean;
125
+ };
126
+ readonly: {
127
+ type: import("vue").PropType<boolean>;
128
+ default: boolean;
129
+ };
130
+ maxlength: {
131
+ type: import("vue").PropType<number>;
132
+ };
133
+ }>> & Readonly<{
46
134
  "onUpdate:modelValue"?: (value: string) => any;
47
135
  }>, {
48
136
  type: BaseInputType;
@@ -55,23 +143,6 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
55
143
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
56
144
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
57
145
  export default _default;
58
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
59
- type __VLS_TypePropsToRuntimeProps<T> = {
60
- [K in keyof T]-?: {} extends Pick<T, K> ? {
61
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
62
- } : {
63
- type: import('vue').PropType<T[K]>;
64
- required: true;
65
- };
66
- };
67
- type __VLS_WithDefaults<P, D> = {
68
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
69
- default: D[K];
70
- }> : P[K];
71
- };
72
- type __VLS_Prettify<T> = {
73
- [K in keyof T]: T[K];
74
- } & {};
75
146
  type __VLS_WithTemplateSlots<T, S> = T & {
76
147
  new (): {
77
148
  $slots: S;
@@ -20,19 +20,85 @@ declare function __VLS_template(): {
20
20
  option: Record<string, any>;
21
21
  }): any;
22
22
  };
23
- declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
24
- layout: string;
25
- optionsLayout: string;
26
- required: boolean;
27
- disabled: boolean;
28
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
24
+ errors: import("vue").PropType<string[]>;
25
+ required: {
26
+ type: import("vue").PropType<boolean>;
27
+ default: boolean;
28
+ };
29
+ label: {
30
+ type: import("vue").PropType<string>;
31
+ };
32
+ disabled: {
33
+ type: import("vue").PropType<boolean>;
34
+ default: boolean;
35
+ };
36
+ id: {
37
+ type: import("vue").PropType<string>;
38
+ };
39
+ modelValue: {
40
+ type: import("vue").PropType<string | number | boolean | Record<string, any>>;
41
+ required: true;
42
+ };
43
+ description: {
44
+ type: import("vue").PropType<string>;
45
+ };
46
+ layout: {
47
+ type: import("vue").PropType<BaseFormLayoutType>;
48
+ default: string;
49
+ };
50
+ helpers: {
51
+ type: import("vue").PropType<string[]>;
52
+ };
53
+ options: {
54
+ type: import("vue").PropType<Record<string, any>[]>;
55
+ required: true;
56
+ };
57
+ optionsLayout: {
58
+ type: import("vue").PropType<BaseRadioOptionsLayout>;
59
+ default: string;
60
+ };
61
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
62
  "update:modelValue": (value: string | number | boolean | Record<string, any>) => void;
30
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
31
- layout: string;
32
- optionsLayout: string;
33
- required: boolean;
34
- disabled: boolean;
35
- }>>> & Readonly<{
63
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
64
+ errors: import("vue").PropType<string[]>;
65
+ required: {
66
+ type: import("vue").PropType<boolean>;
67
+ default: boolean;
68
+ };
69
+ label: {
70
+ type: import("vue").PropType<string>;
71
+ };
72
+ disabled: {
73
+ type: import("vue").PropType<boolean>;
74
+ default: boolean;
75
+ };
76
+ id: {
77
+ type: import("vue").PropType<string>;
78
+ };
79
+ modelValue: {
80
+ type: import("vue").PropType<string | number | boolean | Record<string, any>>;
81
+ required: true;
82
+ };
83
+ description: {
84
+ type: import("vue").PropType<string>;
85
+ };
86
+ layout: {
87
+ type: import("vue").PropType<BaseFormLayoutType>;
88
+ default: string;
89
+ };
90
+ helpers: {
91
+ type: import("vue").PropType<string[]>;
92
+ };
93
+ options: {
94
+ type: import("vue").PropType<Record<string, any>[]>;
95
+ required: true;
96
+ };
97
+ optionsLayout: {
98
+ type: import("vue").PropType<BaseRadioOptionsLayout>;
99
+ default: string;
100
+ };
101
+ }>> & Readonly<{
36
102
  "onUpdate:modelValue"?: (value: string | number | boolean | Record<string, any>) => any;
37
103
  }>, {
38
104
  required: boolean;
@@ -42,23 +108,6 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
42
108
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
109
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
44
110
  export default _default;
45
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
- type __VLS_TypePropsToRuntimeProps<T> = {
47
- [K in keyof T]-?: {} extends Pick<T, K> ? {
48
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
49
- } : {
50
- type: import('vue').PropType<T[K]>;
51
- required: true;
52
- };
53
- };
54
- type __VLS_WithDefaults<P, D> = {
55
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
56
- default: D[K];
57
- }> : P[K];
58
- };
59
- type __VLS_Prettify<T> = {
60
- [K in keyof T]: T[K];
61
- } & {};
62
111
  type __VLS_WithTemplateSlots<T, S> = T & {
63
112
  new (): {
64
113
  $slots: S;
@@ -8,19 +8,70 @@ export interface Props {
8
8
  disabled?: boolean;
9
9
  showText?: boolean;
10
10
  helpers?: string[];
11
- errors?: string[];
12
11
  }
13
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
14
- layout: string;
15
- disabled: boolean;
16
- showText: boolean;
17
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
13
+ errors: import("vue").PropType<string[]>;
14
+ label: {
15
+ type: import("vue").PropType<string>;
16
+ };
17
+ disabled: {
18
+ type: import("vue").PropType<boolean>;
19
+ default: boolean;
20
+ };
21
+ id: {
22
+ type: import("vue").PropType<string>;
23
+ };
24
+ modelValue: {
25
+ type: import("vue").PropType<number>;
26
+ required: true;
27
+ };
28
+ description: {
29
+ type: import("vue").PropType<string>;
30
+ };
31
+ layout: {
32
+ type: import("vue").PropType<BaseFormLayoutType>;
33
+ default: string;
34
+ };
35
+ helpers: {
36
+ type: import("vue").PropType<string[]>;
37
+ };
38
+ showText: {
39
+ type: import("vue").PropType<boolean>;
40
+ default: boolean;
41
+ };
42
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
43
  "update:modelValue": (value: number) => void;
19
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
20
- layout: string;
21
- disabled: boolean;
22
- showText: boolean;
23
- }>>> & Readonly<{
44
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
45
+ errors: import("vue").PropType<string[]>;
46
+ label: {
47
+ type: import("vue").PropType<string>;
48
+ };
49
+ disabled: {
50
+ type: import("vue").PropType<boolean>;
51
+ default: boolean;
52
+ };
53
+ id: {
54
+ type: import("vue").PropType<string>;
55
+ };
56
+ modelValue: {
57
+ type: import("vue").PropType<number>;
58
+ required: true;
59
+ };
60
+ description: {
61
+ type: import("vue").PropType<string>;
62
+ };
63
+ layout: {
64
+ type: import("vue").PropType<BaseFormLayoutType>;
65
+ default: string;
66
+ };
67
+ helpers: {
68
+ type: import("vue").PropType<string[]>;
69
+ };
70
+ showText: {
71
+ type: import("vue").PropType<boolean>;
72
+ default: boolean;
73
+ };
74
+ }>> & Readonly<{
24
75
  "onUpdate:modelValue"?: (value: number) => any;
25
76
  }>, {
26
77
  disabled: boolean;
@@ -28,20 +79,3 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28
79
  showText: boolean;
29
80
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
30
81
  export default _default;
31
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
- type __VLS_TypePropsToRuntimeProps<T> = {
33
- [K in keyof T]-?: {} extends Pick<T, K> ? {
34
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
35
- } : {
36
- type: import('vue').PropType<T[K]>;
37
- required: true;
38
- };
39
- };
40
- type __VLS_WithDefaults<P, D> = {
41
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
42
- default: D[K];
43
- }> : P[K];
44
- };
45
- type __VLS_Prettify<T> = {
46
- [K in keyof T]: T[K];
47
- } & {};
@@ -16,23 +16,94 @@ export interface Props {
16
16
  required?: boolean;
17
17
  disabled?: boolean;
18
18
  helpers?: string[];
19
- errors?: string[];
20
19
  }
21
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
22
- border: string;
23
- layout: string;
24
- placeholder: string;
25
- required: boolean;
26
- disabled: boolean;
27
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
21
+ errors: import("vue").PropType<string[]>;
22
+ required: {
23
+ type: import("vue").PropType<boolean>;
24
+ default: boolean;
25
+ };
26
+ label: {
27
+ type: import("vue").PropType<string>;
28
+ };
29
+ disabled: {
30
+ type: import("vue").PropType<boolean>;
31
+ default: boolean;
32
+ };
33
+ id: {
34
+ type: import("vue").PropType<string>;
35
+ };
36
+ modelValue: {
37
+ type: import("vue").PropType<BaseSelectOptionInterface>;
38
+ required: true;
39
+ };
40
+ description: {
41
+ type: import("vue").PropType<string>;
42
+ };
43
+ layout: {
44
+ type: import("vue").PropType<BaseFormLayoutType>;
45
+ default: string;
46
+ };
47
+ helpers: {
48
+ type: import("vue").PropType<string[]>;
49
+ };
50
+ options: {
51
+ type: import("vue").PropType<BaseSelectOptionInterface[]>;
52
+ required: true;
53
+ };
54
+ placeholder: {
55
+ type: import("vue").PropType<string>;
56
+ default: string;
57
+ };
58
+ border: {
59
+ type: import("vue").PropType<BaseSelectBorderType>;
60
+ default: string;
61
+ };
62
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
63
  "update:modelValue": (value: BaseSelectOptionInterface) => void;
29
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
30
- border: string;
31
- layout: string;
32
- placeholder: string;
33
- required: boolean;
34
- disabled: boolean;
35
- }>>> & Readonly<{
64
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
65
+ errors: import("vue").PropType<string[]>;
66
+ required: {
67
+ type: import("vue").PropType<boolean>;
68
+ default: boolean;
69
+ };
70
+ label: {
71
+ type: import("vue").PropType<string>;
72
+ };
73
+ disabled: {
74
+ type: import("vue").PropType<boolean>;
75
+ default: boolean;
76
+ };
77
+ id: {
78
+ type: import("vue").PropType<string>;
79
+ };
80
+ modelValue: {
81
+ type: import("vue").PropType<BaseSelectOptionInterface>;
82
+ required: true;
83
+ };
84
+ description: {
85
+ type: import("vue").PropType<string>;
86
+ };
87
+ layout: {
88
+ type: import("vue").PropType<BaseFormLayoutType>;
89
+ default: string;
90
+ };
91
+ helpers: {
92
+ type: import("vue").PropType<string[]>;
93
+ };
94
+ options: {
95
+ type: import("vue").PropType<BaseSelectOptionInterface[]>;
96
+ required: true;
97
+ };
98
+ placeholder: {
99
+ type: import("vue").PropType<string>;
100
+ default: string;
101
+ };
102
+ border: {
103
+ type: import("vue").PropType<BaseSelectBorderType>;
104
+ default: string;
105
+ };
106
+ }>> & Readonly<{
36
107
  "onUpdate:modelValue"?: (value: BaseSelectOptionInterface) => any;
37
108
  }>, {
38
109
  required: boolean;
@@ -42,20 +113,3 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
42
113
  border: BaseSelectBorderType;
43
114
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
44
115
  export default _default;
45
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
- type __VLS_TypePropsToRuntimeProps<T> = {
47
- [K in keyof T]-?: {} extends Pick<T, K> ? {
48
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
49
- } : {
50
- type: import('vue').PropType<T[K]>;
51
- required: true;
52
- };
53
- };
54
- type __VLS_WithDefaults<P, D> = {
55
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
56
- default: D[K];
57
- }> : P[K];
58
- };
59
- type __VLS_Prettify<T> = {
60
- [K in keyof T]: T[K];
61
- } & {};
@@ -14,26 +14,101 @@ export interface Props {
14
14
  required?: boolean;
15
15
  disabled?: boolean;
16
16
  helpers?: string[];
17
- errors?: string[];
18
17
  }
19
18
  declare function __VLS_template(): {
20
19
  label?(_: {}): any;
21
20
  };
22
- declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
23
- layout: string;
24
- required: boolean;
25
- disabled: boolean;
26
- textPosition: string;
27
- size: string;
28
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
22
+ errors: import("vue").PropType<string[]>;
23
+ required: {
24
+ type: import("vue").PropType<boolean>;
25
+ default: boolean;
26
+ };
27
+ label: {
28
+ type: import("vue").PropType<string>;
29
+ };
30
+ text: {
31
+ type: import("vue").PropType<string>;
32
+ };
33
+ size: {
34
+ type: import("vue").PropType<BaseSwitchSize>;
35
+ default: string;
36
+ };
37
+ disabled: {
38
+ type: import("vue").PropType<boolean>;
39
+ default: boolean;
40
+ };
41
+ id: {
42
+ type: import("vue").PropType<string>;
43
+ };
44
+ modelValue: {
45
+ type: import("vue").PropType<boolean>;
46
+ required: true;
47
+ };
48
+ description: {
49
+ type: import("vue").PropType<string>;
50
+ };
51
+ layout: {
52
+ type: import("vue").PropType<BaseFormLayoutType>;
53
+ default: string;
54
+ };
55
+ helpers: {
56
+ type: import("vue").PropType<string[]>;
57
+ };
58
+ placeholder: {
59
+ type: import("vue").PropType<string>;
60
+ };
61
+ textPosition: {
62
+ type: import("vue").PropType<BaseSwitchTextPosition>;
63
+ default: string;
64
+ };
65
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
66
  "update:modelValue": (value: boolean) => void;
30
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
31
- layout: string;
32
- required: boolean;
33
- disabled: boolean;
34
- textPosition: string;
35
- size: string;
36
- }>>> & Readonly<{
67
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
68
+ errors: import("vue").PropType<string[]>;
69
+ required: {
70
+ type: import("vue").PropType<boolean>;
71
+ default: boolean;
72
+ };
73
+ label: {
74
+ type: import("vue").PropType<string>;
75
+ };
76
+ text: {
77
+ type: import("vue").PropType<string>;
78
+ };
79
+ size: {
80
+ type: import("vue").PropType<BaseSwitchSize>;
81
+ default: string;
82
+ };
83
+ disabled: {
84
+ type: import("vue").PropType<boolean>;
85
+ default: boolean;
86
+ };
87
+ id: {
88
+ type: import("vue").PropType<string>;
89
+ };
90
+ modelValue: {
91
+ type: import("vue").PropType<boolean>;
92
+ required: true;
93
+ };
94
+ description: {
95
+ type: import("vue").PropType<string>;
96
+ };
97
+ layout: {
98
+ type: import("vue").PropType<BaseFormLayoutType>;
99
+ default: string;
100
+ };
101
+ helpers: {
102
+ type: import("vue").PropType<string[]>;
103
+ };
104
+ placeholder: {
105
+ type: import("vue").PropType<string>;
106
+ };
107
+ textPosition: {
108
+ type: import("vue").PropType<BaseSwitchTextPosition>;
109
+ default: string;
110
+ };
111
+ }>> & Readonly<{
37
112
  "onUpdate:modelValue"?: (value: boolean) => any;
38
113
  }>, {
39
114
  required: boolean;
@@ -44,23 +119,6 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
44
119
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
45
120
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
46
121
  export default _default;
47
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
48
- type __VLS_TypePropsToRuntimeProps<T> = {
49
- [K in keyof T]-?: {} extends Pick<T, K> ? {
50
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
51
- } : {
52
- type: import('vue').PropType<T[K]>;
53
- required: true;
54
- };
55
- };
56
- type __VLS_WithDefaults<P, D> = {
57
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
58
- default: D[K];
59
- }> : P[K];
60
- };
61
- type __VLS_Prettify<T> = {
62
- [K in keyof T]: T[K];
63
- } & {};
64
122
  type __VLS_WithTemplateSlots<T, S> = T & {
65
123
  new (): {
66
124
  $slots: S;