@7n/tauri-components 0.13.0 → 0.13.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.2] - 2026-07-20
4
+
5
+ ### Changed
6
+
7
+ - release: @7n/tauri-components@0.13.1
8
+
9
+ ## [0.13.1] - 2026-07-20
10
+
11
+ ### Fixed
12
+
13
+ - AgentDialog.vue: ховає q-select tier, коли в обраного агента взагалі нема тірів (напр. pi) — раніше лишався видимим зі stale-значенням попереднього агента
14
+
3
15
  ## [0.13.0] - 2026-07-20
4
16
 
5
17
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7n/tauri-components",
3
- "version": "0.13.0",
3
+ "version": "0.13.2",
4
4
  "type": "module",
5
5
  "description": "Shared LLM agent engine + Vue/Quasar UI for Tauri apps (chat, journal, trust-tier approval).",
6
6
  "license": "MIT",
@@ -14,6 +14,7 @@
14
14
  <template v-if="showConfig">
15
15
  <q-select v-model="agentKind" :options="availableAgentKinds" dense outlined label="agent" />
16
16
  <q-select
17
+ v-if="availableTiers.length"
17
18
  v-model="modelTier"
18
19
  :options="availableTiers"
19
20
  option-value="id"
@@ -3,7 +3,7 @@ type: Vue Component
3
3
  title: AgentDialog.vue
4
4
  resource: npm/src/components/AgentDialog.vue
5
5
  docgen:
6
- crc: 9f725385
6
+ crc: b6f22df0
7
7
  model: omlx/gemma-4-e4b-it-OptiQ-4bit
8
8
  ---
9
9