@saooti/octopus-sdk 41.5.7 → 41.5.8
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/.serena/project.yml
CHANGED
|
@@ -109,3 +109,7 @@ default_modes:
|
|
|
109
109
|
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
|
|
110
110
|
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
|
|
111
111
|
fixed_tools: []
|
|
112
|
+
|
|
113
|
+
# override of the corresponding setting in serena_config.yml, see the documentation there.
|
|
114
|
+
# If null or missing, the value from the global config is used.
|
|
115
|
+
symbol_info_budget:
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -194,9 +194,12 @@ const maxOptionsSelected = computed(() => {
|
|
|
194
194
|
});
|
|
195
195
|
|
|
196
196
|
//Watch
|
|
197
|
-
watch(()=>optionChosen, () => {
|
|
197
|
+
watch(()=>optionChosen, (value) => {
|
|
198
|
+
console.log('update hello')
|
|
198
199
|
optionSelected.value = optionChosen;
|
|
200
|
+
console.log(optionChosen, value)
|
|
199
201
|
}, {deep: true, immediate: true});
|
|
202
|
+
|
|
200
203
|
watch(optionSelected, () => {
|
|
201
204
|
if (noDeselect || null !== optionSelected.value) {
|
|
202
205
|
return;
|
|
@@ -238,7 +241,7 @@ function afterSearch(optionsFetched: Array<T>, count: number): void {
|
|
|
238
241
|
function onOptionSelected(newValue: Array<T>|T): void {
|
|
239
242
|
// Check if selectAll is included
|
|
240
243
|
if (withSelectAll && Array.isArray(newValue) && newValue.find(o => o.id === selectAll.id)) {
|
|
241
|
-
emit("selected", options.value.slice(1
|
|
244
|
+
emit("selected", options.value.slice(1));
|
|
242
245
|
} else {
|
|
243
246
|
emit("selected", newValue);
|
|
244
247
|
}
|