@snabcentr/vue-ui-lib 4.7.0 → 4.7.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 +1 -1
- package/dist/sc-vue-ui-lib.js +10 -2
- 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/selects/reference-select.vue.d.ts +5 -0
- package/package.json +1 -1
|
@@ -30,6 +30,11 @@ declare const _default: <T extends IReference<any, any>>(__VLS_props: NonNullabl
|
|
|
30
30
|
* Если установлено значение `responsive`, то все выбранные значения будут располагаться в одну строку.
|
|
31
31
|
*/
|
|
32
32
|
maxTagCount?: number | "responsive";
|
|
33
|
+
/**
|
|
34
|
+
* Функция определения недоступности (disabled) отдельного пункта списка.
|
|
35
|
+
* Возвращает `true`, если пункт должен быть отключён для выбора.
|
|
36
|
+
*/
|
|
37
|
+
disabledItem?: (item: T) => boolean;
|
|
33
38
|
}) & Partial<{}>> & import('vue').PublicProps;
|
|
34
39
|
expose(exposed: import('vue').ShallowUnwrapRef<{
|
|
35
40
|
focus: () => void | undefined;
|