@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.
@@ -4,7 +4,11 @@
4
4
  "mcp__serena__find_file",
5
5
  "mcp__serena__find_symbol",
6
6
  "mcp__serena__list_dir",
7
- "Bash(npm test:*)"
7
+ "Bash(npm test:*)",
8
+ "Bash(npm audit:*)",
9
+ "Bash(python3:*)",
10
+ "Bash(node --version:*)",
11
+ "Bash(npm:*)"
8
12
  ]
9
13
  }
10
14
  }
@@ -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
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 41.5.8 (24/02/2026)
4
+
5
+ **Fix**
6
+
7
+ - Correction "Tout sélectionner" du `ClassicMultiselect`
8
+
3
9
  ## 41.5.7 (20/02/2026)
4
10
 
5
11
  **Fix**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "41.5.7",
3
+ "version": "41.5.8",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -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, -1));
244
+ emit("selected", options.value.slice(1));
242
245
  } else {
243
246
  emit("selected", newValue);
244
247
  }