@snabcentr/vue-ui-lib 4.12.0 → 4.13.1
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 +2 -4
- package/dist/sc-vue-ui-lib.js +2570 -2566
- package/dist/sc-vue-ui-lib.js.map +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs +12 -12
- package/dist/sc-vue-ui-lib.umd.cjs.map +1 -1
- package/dist/src/components/catalog/forms/set-client-price-form-item.vue.d.ts +11 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CalculationTypeEnum, ICatalogableItem, IPriceUpdateData } from '@snabcentr/common-lib';
|
|
1
|
+
import { CalculationTypeEnum, ICatalogableItem, IPriceCoefficient, IPriceUpdateData } from '@snabcentr/common-lib';
|
|
2
2
|
import { IDisabled, IValidationFeedbackProperties } from '../../../properties';
|
|
3
3
|
/**
|
|
4
4
|
* Компонент "Установка клиентской цены".
|
|
@@ -16,6 +16,11 @@ declare const _default: import('vue').DefineComponent<import('../../../propertie
|
|
|
16
16
|
* Текст для подписи поля.
|
|
17
17
|
*/
|
|
18
18
|
label?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Функция определения коэффициентов, недоступных для установки.
|
|
21
|
+
* Такие коэффициенты отображаются в списке, но отключены (disabled).
|
|
22
|
+
*/
|
|
23
|
+
disabledCoefficient?: (coefficient: IPriceCoefficient) => boolean;
|
|
19
24
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
20
25
|
"update:value": (value?: IPriceUpdateData | undefined) => any;
|
|
21
26
|
}, string, import('vue').PublicProps, Readonly<import('../../../properties').IValue<IPriceUpdateData> & import('../../../properties').IClearable & IValidationFeedbackProperties & IDisabled & {
|
|
@@ -31,6 +36,11 @@ declare const _default: import('vue').DefineComponent<import('../../../propertie
|
|
|
31
36
|
* Текст для подписи поля.
|
|
32
37
|
*/
|
|
33
38
|
label?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Функция определения коэффициентов, недоступных для установки.
|
|
41
|
+
* Такие коэффициенты отображаются в списке, но отключены (disabled).
|
|
42
|
+
*/
|
|
43
|
+
disabledCoefficient?: (coefficient: IPriceCoefficient) => boolean;
|
|
34
44
|
}> & Readonly<{
|
|
35
45
|
"onUpdate:value"?: ((value?: IPriceUpdateData | undefined) => any) | undefined;
|
|
36
46
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|