@snabcentr/vue-ui-lib 4.19.0 → 4.19.2
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 +2 -2
- package/dist/release_notes.tmp +2 -2
- package/dist/sc-vue-ui-lib.css +1 -1
- package/dist/sc-vue-ui-lib.js +2172 -2154
- package/dist/sc-vue-ui-lib.js.map +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs +58 -58
- 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 +10 -0
- package/dist/src/components/dates/date-range/date-range-fields.vue.d.ts +1 -1
- package/dist/src/components/dates/date-range/date-range-input.vue.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,6 +21,11 @@ declare const _default: import('vue').DefineComponent<import('../../../propertie
|
|
|
21
21
|
* Такие коэффициенты отображаются в списке, но отключены (disabled).
|
|
22
22
|
*/
|
|
23
23
|
disabledCoefficient?: (coefficient: IPriceCoefficient) => boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Функция определения коэффициентов, отображаемых в списке.
|
|
26
|
+
* Коэффициенты, для которых функция возвращает `false`, в списке не отображаются.
|
|
27
|
+
*/
|
|
28
|
+
visibleCoefficient?: (coefficient: IPriceCoefficient) => boolean;
|
|
24
29
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
25
30
|
"update:value": (value?: IPriceUpdateData | undefined) => any;
|
|
26
31
|
}, string, import('vue').PublicProps, Readonly<import('../../../properties').IValue<IPriceUpdateData> & import('../../../properties').IClearable & IValidationFeedbackProperties & IDisabled & {
|
|
@@ -41,6 +46,11 @@ declare const _default: import('vue').DefineComponent<import('../../../propertie
|
|
|
41
46
|
* Такие коэффициенты отображаются в списке, но отключены (disabled).
|
|
42
47
|
*/
|
|
43
48
|
disabledCoefficient?: (coefficient: IPriceCoefficient) => boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Функция определения коэффициентов, отображаемых в списке.
|
|
51
|
+
* Коэффициенты, для которых функция возвращает `false`, в списке не отображаются.
|
|
52
|
+
*/
|
|
53
|
+
visibleCoefficient?: (coefficient: IPriceCoefficient) => boolean;
|
|
44
54
|
}> & Readonly<{
|
|
45
55
|
"onUpdate:value"?: ((value?: IPriceUpdateData | undefined) => any) | undefined;
|
|
46
56
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -62,5 +62,5 @@ declare const _default: import('vue').DefineComponent<IClearable & IDateRangeDis
|
|
|
62
62
|
dateFormat: string;
|
|
63
63
|
placeholderFrom: string;
|
|
64
64
|
placeholderTo: string;
|
|
65
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
65
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
66
66
|
export default _default;
|
|
@@ -2,7 +2,7 @@ import { IClearable } from '../../../properties/interfaces/i-clearable';
|
|
|
2
2
|
import { IDisabled } from '../../../properties/interfaces/i-disabled';
|
|
3
3
|
import { IPlaceholder } from '../../../properties/interfaces/i-placeholder';
|
|
4
4
|
/**
|
|
5
|
-
* Поле одиночной даты: слева в панели год и
|
|
5
|
+
* Поле одиночной даты: слева в панели год и месяцы (на телефоне скрыты), справа календарь дней.
|
|
6
6
|
*/
|
|
7
7
|
declare const _default: import('vue').DefineComponent<IClearable & IDisabled & IPlaceholder & {
|
|
8
8
|
/**
|