@snabcentr/vue-ui-lib 3.62.0 → 3.63.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 +2 -2
- package/dist/sc-vue-ui-lib.js +14 -4
- 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/catalog/forms/set-client-price-form-item.vue.d.ts +11 -1
- package/dist/src/components/selects/reference-select.vue.d.ts +4 -0
- package/package.json +1 -1
package/dist/manifest.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "index",
|
|
5
5
|
"src": "src/index.ts",
|
|
6
6
|
"isEntry": true,
|
|
7
|
-
"integrity": "sha384
|
|
7
|
+
"integrity": "sha384-/Vz9zBIa7wRTzdHRLlDpQnsnYKUfW/p5GABkjDzV9w3oFwUDmdnd1yTp86J4+2pF"
|
|
8
8
|
},
|
|
9
9
|
"style.css": {
|
|
10
10
|
"file": "sc-vue-ui-lib.css",
|
package/dist/release_notes.tmp
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## 3.
|
|
1
|
+
## 3.63.0 (2026-06-30)
|
|
2
2
|
|
|
3
3
|
### added (1 change)
|
|
4
4
|
|
|
5
|
-
- [#
|
|
5
|
+
- [#13218: Добавлено отключение недоступных коэффициентов в форме установки цены](web_soft/libs/vue/snabcentr-ui-lib@a60f609a84c7f7ed792334e1416201d8a8f27abc) ([merge request](web_soft/libs/vue/snabcentr-ui-lib!252))
|
|
6
6
|
|
package/dist/sc-vue-ui-lib.js
CHANGED
|
@@ -22761,12 +22761,20 @@ const b_ = {
|
|
|
22761
22761
|
showEmptyValue: { type: Boolean, default: !1 },
|
|
22762
22762
|
sortOptionsByLabel: { type: Boolean, default: !1 },
|
|
22763
22763
|
filterable: { type: Boolean, default: !1 },
|
|
22764
|
-
maxTagCount: { default: void 0 }
|
|
22764
|
+
maxTagCount: { default: void 0 },
|
|
22765
|
+
disabledItem: { type: Function, default: void 0 }
|
|
22765
22766
|
},
|
|
22766
22767
|
emits: ["update:value"],
|
|
22767
22768
|
setup(t, { expose: e, emit: i }) {
|
|
22768
22769
|
const n = t, s = i, r = I(() => dt(n.value)), o = new Rg(), a = I(() => ut(n.value) ? r.value ? [] : null : dt(n.value) ? n.value.map((g) => g.id) : n.value.id), l = I(
|
|
22769
|
-
() => pi.convertReferencesToSelectOptionsList(
|
|
22770
|
+
() => pi.convertReferencesToSelectOptionsList(
|
|
22771
|
+
n.referenceList,
|
|
22772
|
+
n.sortOptionsByLabel,
|
|
22773
|
+
!1,
|
|
22774
|
+
n.showEmptyValue,
|
|
22775
|
+
void 0,
|
|
22776
|
+
n.disabledItem
|
|
22777
|
+
)
|
|
22770
22778
|
), c = (g) => {
|
|
22771
22779
|
var h;
|
|
22772
22780
|
if (dt(g)) {
|
|
@@ -22815,7 +22823,8 @@ const b_ = {
|
|
|
22815
22823
|
disabled: { type: Boolean },
|
|
22816
22824
|
catalogItem: {},
|
|
22817
22825
|
calculationType: {},
|
|
22818
|
-
label: {}
|
|
22826
|
+
label: {},
|
|
22827
|
+
disabledCoefficient: { type: Function }
|
|
22819
22828
|
},
|
|
22820
22829
|
emits: ["update:value"],
|
|
22821
22830
|
setup(t, { emit: e }) {
|
|
@@ -22940,8 +22949,9 @@ const b_ = {
|
|
|
22940
22949
|
disabled: t.disabled,
|
|
22941
22950
|
"consistent-menu-width": !1,
|
|
22942
22951
|
"show-empty-value": !0,
|
|
22952
|
+
"disabled-item": t.disabledCoefficient,
|
|
22943
22953
|
"onUpdate:value": v
|
|
22944
|
-
}, null, 8, ["value", "reference-list", "clearable", "disabled"]),
|
|
22954
|
+
}, null, 8, ["value", "reference-list", "clearable", "disabled", "disabled-item"]),
|
|
22945
22955
|
N(S, {
|
|
22946
22956
|
value: d.value,
|
|
22947
22957
|
"onUpdate:value": [
|