@point-hub/papp 0.0.51 → 0.0.52
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/dist/components/base-autocomplete.vue.d.ts +6 -22
- package/dist/index.js +2721 -2717
- package/dist/index.umd.cjs +7 -7
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,6 @@ export interface BaseAutocompleteOptionInterface {
|
|
|
5
5
|
[key: string]: any;
|
|
6
6
|
}
|
|
7
7
|
export interface Props {
|
|
8
|
-
modelValue: BaseAutocompleteOptionInterface | null;
|
|
9
8
|
id?: string;
|
|
10
9
|
options: BaseAutocompleteOptionInterface[];
|
|
11
10
|
label?: string;
|
|
@@ -20,6 +19,8 @@ export interface Props {
|
|
|
20
19
|
errors?: string[];
|
|
21
20
|
}
|
|
22
21
|
declare const _default: import("vue").DefineComponent<{
|
|
22
|
+
modelValue: import("vue").PropType<any>;
|
|
23
|
+
isLoading: import("vue").PropType<boolean>;
|
|
23
24
|
query: import("vue").PropType<string>;
|
|
24
25
|
required: {
|
|
25
26
|
type: import("vue").PropType<boolean>;
|
|
@@ -35,13 +36,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
36
|
id: {
|
|
36
37
|
type: import("vue").PropType<string>;
|
|
37
38
|
};
|
|
38
|
-
modelValue: {
|
|
39
|
-
type: import("vue").PropType<BaseAutocompleteOptionInterface>;
|
|
40
|
-
required: true;
|
|
41
|
-
default: () => {
|
|
42
|
-
label: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
39
|
description: {
|
|
46
40
|
type: import("vue").PropType<string>;
|
|
47
41
|
};
|
|
@@ -72,9 +66,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
72
66
|
};
|
|
73
67
|
}, {
|
|
74
68
|
inputRef: import("vue").Ref<any>;
|
|
75
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
76
|
-
|
|
77
|
-
|
|
69
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
70
|
+
modelValue: import("vue").PropType<any>;
|
|
71
|
+
isLoading: import("vue").PropType<boolean>;
|
|
78
72
|
query: import("vue").PropType<string>;
|
|
79
73
|
required: {
|
|
80
74
|
type: import("vue").PropType<boolean>;
|
|
@@ -90,13 +84,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
90
84
|
id: {
|
|
91
85
|
type: import("vue").PropType<string>;
|
|
92
86
|
};
|
|
93
|
-
modelValue: {
|
|
94
|
-
type: import("vue").PropType<BaseAutocompleteOptionInterface>;
|
|
95
|
-
required: true;
|
|
96
|
-
default: () => {
|
|
97
|
-
label: string;
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
87
|
description: {
|
|
101
88
|
type: import("vue").PropType<string>;
|
|
102
89
|
};
|
|
@@ -125,12 +112,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
112
|
type: import("vue").PropType<boolean>;
|
|
126
113
|
default: boolean;
|
|
127
114
|
};
|
|
128
|
-
}
|
|
129
|
-
"onUpdate:modelValue"?: (value: BaseAutocompleteOptionInterface) => any;
|
|
130
|
-
}, {
|
|
115
|
+
}>>, {
|
|
131
116
|
required: boolean;
|
|
132
117
|
disabled: boolean;
|
|
133
|
-
modelValue: BaseAutocompleteOptionInterface | null;
|
|
134
118
|
layout: BaseFormLayoutType;
|
|
135
119
|
border: BaseAutocompleteBorderType;
|
|
136
120
|
autofocus: boolean;
|