@snabcentr/vue-ui-lib 2.17.2 → 2.18.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 +3191 -3163
- package/dist/sc-vue-ui-lib.js.map +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs +35 -35
- package/dist/sc-vue-ui-lib.umd.cjs.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/values/index.d.ts +1 -0
- package/dist/src/values/reference-lists.d.ts +58 -0
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export * from './reference-lists';
|
@@ -0,0 +1,58 @@
|
|
1
|
+
import { ICityWithRegionAndCountry } from '@snabcentr/common-lib';
|
2
|
+
import { SelectOption } from 'naive-ui';
|
3
|
+
/**
|
4
|
+
* Список типов доставки.
|
5
|
+
*/
|
6
|
+
export declare const deliveryTypeReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').IDeliveryType[]>;
|
7
|
+
/**
|
8
|
+
* Список менеджеров.
|
9
|
+
*/
|
10
|
+
export declare const managersReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').IManager[]>;
|
11
|
+
/**
|
12
|
+
* Список организационно-правовых форм.
|
13
|
+
*/
|
14
|
+
export declare const opfReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').IOpf[]>;
|
15
|
+
/**
|
16
|
+
* Список групп партнеров.
|
17
|
+
*/
|
18
|
+
export declare const partnerGroupReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').IPartnerGroup[]>;
|
19
|
+
/**
|
20
|
+
* Список коэффициентов цен.
|
21
|
+
*/
|
22
|
+
export declare const priceCoefficientsReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').IPriceCoefficient[]>;
|
23
|
+
/**
|
24
|
+
* Список типов файлов продуктов/категорий.
|
25
|
+
*/
|
26
|
+
export declare const productFilesTypesReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').IProductFileType[]>;
|
27
|
+
/**
|
28
|
+
* Список значений справочника типов ресурсов.
|
29
|
+
*/
|
30
|
+
export declare const resourceReferencesList: import('vue').ComputedRef<import('@snabcentr/common-lib').IResourceType[] | undefined>;
|
31
|
+
/**
|
32
|
+
* Список направлений продаж.
|
33
|
+
*/
|
34
|
+
export declare const salesDirectionsReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').ISalesDirection[]>;
|
35
|
+
/**
|
36
|
+
* Список складов.
|
37
|
+
*/
|
38
|
+
export declare const warehousesReferenceList: import('vue').ComputedRef<import('@snabcentr/common-lib').IWarehouse[]>;
|
39
|
+
/**
|
40
|
+
* Справочник опций направлений продаж.
|
41
|
+
*/
|
42
|
+
export declare const channelPrimaryInterestOptionsList: import('vue').ComputedRef<SelectOption[]>;
|
43
|
+
/**
|
44
|
+
* Справочник опций направлений продаж.
|
45
|
+
*/
|
46
|
+
export declare const sourcePrimaryInterestOptionsList: import('vue').ComputedRef<SelectOption[]>;
|
47
|
+
/**
|
48
|
+
* Обработчик события поиска города по названию.
|
49
|
+
*
|
50
|
+
* @param term Терм поиска.
|
51
|
+
*/
|
52
|
+
export declare const searchCityReferenceDataHandler: (term: string) => Promise<ICityWithRegionAndCountry[]>;
|
53
|
+
/**
|
54
|
+
* Функция рендеринга представления пункта выпадающего списка с данными о городе.
|
55
|
+
*
|
56
|
+
* @param items Список данных о городах.
|
57
|
+
*/
|
58
|
+
export declare const searchCityReferenceLabelRenderer: (items: ICityWithRegionAndCountry[]) => SelectOption[];
|