@point-hub/papp 0.0.47 → 0.0.49

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.
@@ -19,29 +19,113 @@ export interface Props {
19
19
  helpers?: string[];
20
20
  errors?: string[];
21
21
  }
22
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
23
- modelValue: () => {
24
- label: string;
22
+ declare const _default: import("vue").DefineComponent<{
23
+ query: import("vue").PropType<string>;
24
+ required: {
25
+ type: import("vue").PropType<boolean>;
26
+ default: boolean;
25
27
  };
26
- border: string;
27
- layout: string;
28
- autofocus: boolean;
29
- required: boolean;
30
- disabled: boolean;
31
- }>, {
32
- inputRef: import("vue").Ref<any, any>;
28
+ label: {
29
+ type: import("vue").PropType<string>;
30
+ };
31
+ disabled: {
32
+ type: import("vue").PropType<boolean>;
33
+ default: boolean;
34
+ };
35
+ id: {
36
+ type: import("vue").PropType<string>;
37
+ };
38
+ modelValue: {
39
+ type: import("vue").PropType<BaseAutocompleteOptionInterface>;
40
+ required: true;
41
+ default: () => {
42
+ label: string;
43
+ };
44
+ };
45
+ description: {
46
+ type: import("vue").PropType<string>;
47
+ };
48
+ layout: {
49
+ type: import("vue").PropType<BaseFormLayoutType>;
50
+ default: string;
51
+ };
52
+ helpers: {
53
+ type: import("vue").PropType<string[]>;
54
+ };
55
+ errors: {
56
+ type: import("vue").PropType<string[]>;
57
+ };
58
+ options: {
59
+ type: import("vue").PropType<BaseAutocompleteOptionInterface[]>;
60
+ required: true;
61
+ };
62
+ placeholder: {
63
+ type: import("vue").PropType<string>;
64
+ };
65
+ border: {
66
+ type: import("vue").PropType<BaseAutocompleteBorderType>;
67
+ default: string;
68
+ };
69
+ autofocus: {
70
+ type: import("vue").PropType<boolean>;
71
+ default: boolean;
72
+ };
73
+ }, {
74
+ inputRef: import("vue").Ref<any>;
33
75
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
76
  "update:modelValue": (value: BaseAutocompleteOptionInterface) => void;
35
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
36
- modelValue: () => {
37
- label: string;
77
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
78
+ query: import("vue").PropType<string>;
79
+ required: {
80
+ type: import("vue").PropType<boolean>;
81
+ default: boolean;
38
82
  };
39
- border: string;
40
- layout: string;
41
- autofocus: boolean;
42
- required: boolean;
43
- disabled: boolean;
44
- }>>> & {
83
+ label: {
84
+ type: import("vue").PropType<string>;
85
+ };
86
+ disabled: {
87
+ type: import("vue").PropType<boolean>;
88
+ default: boolean;
89
+ };
90
+ id: {
91
+ type: import("vue").PropType<string>;
92
+ };
93
+ modelValue: {
94
+ type: import("vue").PropType<BaseAutocompleteOptionInterface>;
95
+ required: true;
96
+ default: () => {
97
+ label: string;
98
+ };
99
+ };
100
+ description: {
101
+ type: import("vue").PropType<string>;
102
+ };
103
+ layout: {
104
+ type: import("vue").PropType<BaseFormLayoutType>;
105
+ default: string;
106
+ };
107
+ helpers: {
108
+ type: import("vue").PropType<string[]>;
109
+ };
110
+ errors: {
111
+ type: import("vue").PropType<string[]>;
112
+ };
113
+ options: {
114
+ type: import("vue").PropType<BaseAutocompleteOptionInterface[]>;
115
+ required: true;
116
+ };
117
+ placeholder: {
118
+ type: import("vue").PropType<string>;
119
+ };
120
+ border: {
121
+ type: import("vue").PropType<BaseAutocompleteBorderType>;
122
+ default: string;
123
+ };
124
+ autofocus: {
125
+ type: import("vue").PropType<boolean>;
126
+ default: boolean;
127
+ };
128
+ }>> & {
45
129
  "onUpdate:modelValue"?: (value: BaseAutocompleteOptionInterface) => any;
46
130
  }, {
47
131
  required: boolean;
@@ -52,20 +136,3 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
52
136
  autofocus: boolean;
53
137
  }, {}>;
54
138
  export default _default;
55
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
56
- type __VLS_TypePropsToRuntimeProps<T> = {
57
- [K in keyof T]-?: {} extends Pick<T, K> ? {
58
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
59
- } : {
60
- type: import('vue').PropType<T[K]>;
61
- required: true;
62
- };
63
- };
64
- type __VLS_WithDefaults<P, D> = {
65
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
66
- default: D[K];
67
- }> : P[K];
68
- };
69
- type __VLS_Prettify<T> = {
70
- [K in keyof T]: T[K];
71
- } & {};
@@ -21,7 +21,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
21
21
  required: boolean;
22
22
  disabled: boolean;
23
23
  }>, {
24
- inputRef: import("vue").Ref<any, any>;
24
+ inputRef: import("vue").Ref<any>;
25
25
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
26
26
  "update:modelValue": (value: boolean) => void;
27
27
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
@@ -20,8 +20,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
20
20
  required: boolean;
21
21
  disabled: boolean;
22
22
  }>, {
23
- inputRef: import("vue").Ref<any, any>;
24
- dateRef: import("vue").Ref<any, any>;
23
+ inputRef: import("vue").Ref<any>;
24
+ dateRef: import("vue").Ref<any>;
25
25
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
26
26
  isoValue: (value: string) => void;
27
27
  "update:modelValue": (value: string) => void;
@@ -27,8 +27,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
27
27
  required: boolean;
28
28
  disabled: boolean;
29
29
  }>, {
30
- fileRef: import("vue").Ref<any, any>;
31
- inputRef: import("vue").Ref<any, any>;
30
+ fileRef: import("vue").Ref<any>;
31
+ inputRef: import("vue").Ref<any>;
32
32
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
33
33
  change: (event: any) => void;
34
34
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
@@ -22,7 +22,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
22
22
  required: boolean;
23
23
  disabled: boolean;
24
24
  }>, {
25
- inputRef: import("vue").Ref<any, any>;
25
+ inputRef: import("vue").Ref<any>;
26
26
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
27
  "update:modelValue": (value: string | number | boolean) => void;
28
28
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
23
23
  required: boolean;
24
24
  disabled: boolean;
25
25
  }>, {
26
- inputRef: import("vue").Ref<any, any>;
26
+ inputRef: import("vue").Ref<any>;
27
27
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
28
  "update:modelValue": (value: number) => void;
29
29
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
@@ -28,7 +28,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
28
28
  required: boolean;
29
29
  disabled: boolean;
30
30
  }>, {
31
- inputRef: import("vue").Ref<any, any>;
31
+ inputRef: import("vue").Ref<any>;
32
32
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
33
33
  "update:modelValue": (value: string) => void;
34
34
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
23
23
  required: boolean;
24
24
  disabled: boolean;
25
25
  }>, {
26
- textareaRef: import("vue").Ref<any, any>;
26
+ textareaRef: import("vue").Ref<any>;
27
27
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
28
  "update:modelValue": (value: string) => void;
29
29
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {