@point-hub/papp 0.0.119 → 0.0.120
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 +7 -0
- package/dist/components/base-choosen.vue.d.ts +7 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3015 -3055
- package/dist/index.umd.cjs +6 -6
- package/package.json +13 -12
|
@@ -2,6 +2,7 @@ import { BaseFormLayoutType } from './base-form.vue';
|
|
|
2
2
|
export type BaseAutocompleteBorderType = 'none' | 'simple' | 'full';
|
|
3
3
|
export interface BaseAutocompleteOptionInterface {
|
|
4
4
|
label?: string;
|
|
5
|
+
value?: string;
|
|
5
6
|
[key: string]: any;
|
|
6
7
|
}
|
|
7
8
|
export interface Props {
|
|
@@ -20,6 +21,8 @@ export interface Props {
|
|
|
20
21
|
}
|
|
21
22
|
type __VLS_Props = Props;
|
|
22
23
|
type __VLS_PublicProps = {
|
|
24
|
+
'selected-label'?: any;
|
|
25
|
+
'selected-value'?: any;
|
|
23
26
|
modelValue?: BaseAutocompleteOptionInterface;
|
|
24
27
|
'isLoading'?: boolean;
|
|
25
28
|
'query'?: string;
|
|
@@ -29,11 +32,15 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
29
32
|
inputRef: import('vue').Ref<any, any>;
|
|
30
33
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31
34
|
"update:modelValue": (value: BaseAutocompleteOptionInterface) => any;
|
|
35
|
+
"update:selected-label": (value: any) => any;
|
|
36
|
+
"update:selected-value": (value: any) => any;
|
|
32
37
|
"update:isLoading": (value: boolean) => any;
|
|
33
38
|
"update:query": (value: string) => any;
|
|
34
39
|
"update:errors": (value: string[]) => any;
|
|
35
40
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
36
41
|
"onUpdate:modelValue"?: ((value: BaseAutocompleteOptionInterface) => any) | undefined;
|
|
42
|
+
"onUpdate:selected-label"?: ((value: any) => any) | undefined;
|
|
43
|
+
"onUpdate:selected-value"?: ((value: any) => any) | undefined;
|
|
37
44
|
"onUpdate:isLoading"?: ((value: boolean) => any) | undefined;
|
|
38
45
|
"onUpdate:query"?: ((value: string) => any) | undefined;
|
|
39
46
|
"onUpdate:errors"?: ((value: string[]) => any) | undefined;
|
|
@@ -2,6 +2,7 @@ import { BaseFormLayoutType } from './base-form.vue';
|
|
|
2
2
|
interface IOption {
|
|
3
3
|
[key: string]: unknown;
|
|
4
4
|
label: string;
|
|
5
|
+
value: string;
|
|
5
6
|
}
|
|
6
7
|
export type BaseChoosenBorderType = 'none' | 'simple' | 'full';
|
|
7
8
|
export interface Props {
|
|
@@ -27,6 +28,8 @@ type __VLS_PublicProps = {
|
|
|
27
28
|
'search'?: string;
|
|
28
29
|
'options'?: IOption[];
|
|
29
30
|
'errors'?: string[];
|
|
31
|
+
'selected-label'?: any;
|
|
32
|
+
'selected-value'?: any;
|
|
30
33
|
} & __VLS_Props;
|
|
31
34
|
declare function __VLS_template(): {
|
|
32
35
|
attrs: Partial<{}>;
|
|
@@ -44,6 +47,8 @@ declare function __VLS_template(): {
|
|
|
44
47
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
45
48
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
49
|
"update:modelValue": (value: any) => any;
|
|
50
|
+
"update:selected-label": (value: any) => any;
|
|
51
|
+
"update:selected-value": (value: any) => any;
|
|
47
52
|
"update:isLoading": (value: boolean) => any;
|
|
48
53
|
"update:errors": (value: string[]) => any;
|
|
49
54
|
"update:selected": (value: IOption) => any;
|
|
@@ -51,6 +56,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
51
56
|
"update:options": (value: IOption[]) => any;
|
|
52
57
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
53
58
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
59
|
+
"onUpdate:selected-label"?: ((value: any) => any) | undefined;
|
|
60
|
+
"onUpdate:selected-value"?: ((value: any) => any) | undefined;
|
|
54
61
|
"onUpdate:isLoading"?: ((value: boolean) => any) | undefined;
|
|
55
62
|
"onUpdate:errors"?: ((value: string[]) => any) | undefined;
|
|
56
63
|
"onUpdate:selected"?: ((value: IOption) => any) | undefined;
|