@webitel/ui-sdk 24.12.35 → 24.12.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.12.35",
3
+ "version": "24.12.37",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -87,7 +87,7 @@ export default {
87
87
  if (!this.isValue) return '';
88
88
 
89
89
  if (this.useValueFromOptionsByProp) {
90
- const valueFromOptions = this.cachedOptionsMap[this.useValueFromOptionsByProp];
90
+ const valueFromOptions = this.cachedOptionsMap[this.value];
91
91
  if (valueFromOptions) return valueFromOptions;
92
92
  }
93
93
 
@@ -155,13 +155,13 @@ export default {
155
155
  ],
156
156
  props: {
157
157
  // vue 3
158
- modelValue: {},
158
+ // modelValue: {},
159
159
 
160
160
  // vue 2 fallback
161
161
  value: {
162
- default: (props) => {
163
- return props.modelValue;
164
- },
162
+ // default: (props) => {
163
+ // return props.modelValue;
164
+ // },
165
165
  },
166
166
 
167
167
  multiple: {