@snabcentr/vue-ui-lib 2.12.0 → 2.13.0
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/manifest.json +1 -1
- package/dist/release_notes.tmp +3 -3
- package/dist/sc-vue-ui-lib.js +10 -10
- package/dist/sc-vue-ui-lib.js.map +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs.map +1 -1
- package/dist/src/components/suggestions/address/address-suggestion.vue.d.ts +18 -3
- package/package.json +1 -1
@@ -1,9 +1,16 @@
|
|
1
1
|
import { IAddressSuggestion } from '@snabcentr/common-lib';
|
2
|
-
import {
|
2
|
+
import { SearchDataHandlerType } from '../../../properties/types/search-data-handler-type';
|
3
3
|
/**
|
4
4
|
* Компонент подсказки данных об адресе.
|
5
5
|
*/
|
6
|
-
declare const _default: import('vue').DefineComponent<
|
6
|
+
declare const _default: import('vue').DefineComponent<import('../../..').IDisabled & import('../../..').IValue<string | undefined> & import('../../..').IClearable & {
|
7
|
+
field?: string;
|
8
|
+
} & {
|
9
|
+
/**
|
10
|
+
* Обработчик события поиска товаров.
|
11
|
+
*/
|
12
|
+
searchDataHandler?: SearchDataHandlerType<IAddressSuggestion[]>;
|
13
|
+
}, {
|
7
14
|
/**
|
8
15
|
* Устанавливает фокус в поле ввода.
|
9
16
|
*/
|
@@ -11,13 +18,21 @@ declare const _default: import('vue').DefineComponent<IProperties, {
|
|
11
18
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
12
19
|
"update:value": (value: string | undefined, ...additionalParams: any[]) => any;
|
13
20
|
select: (selectedItem: IAddressSuggestion) => any;
|
14
|
-
}, string, import('vue').PublicProps, Readonly<
|
21
|
+
}, string, import('vue').PublicProps, Readonly<import('../../..').IDisabled & import('../../..').IValue<string | undefined> & import('../../..').IClearable & {
|
22
|
+
field?: string;
|
23
|
+
} & {
|
24
|
+
/**
|
25
|
+
* Обработчик события поиска товаров.
|
26
|
+
*/
|
27
|
+
searchDataHandler?: SearchDataHandlerType<IAddressSuggestion[]>;
|
28
|
+
}> & Readonly<{
|
15
29
|
"onUpdate:value"?: ((value: string | undefined, ...additionalParams: any[]) => any) | undefined;
|
16
30
|
onSelect?: ((selectedItem: IAddressSuggestion) => any) | undefined;
|
17
31
|
}>, {
|
18
32
|
value: string | undefined;
|
19
33
|
clearable: boolean;
|
20
34
|
disabled: boolean;
|
35
|
+
searchDataHandler: SearchDataHandlerType<IAddressSuggestion[]>;
|
21
36
|
field: string;
|
22
37
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
23
38
|
autoCompleteElement: unknown;
|