@7n/tauri-components 0.5.0 → 0.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7n/tauri-components",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
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",
@@ -52,7 +52,7 @@
52
52
  type="textarea"
53
53
  autogrow
54
54
  :label="inputLabel"
55
- hint="наприклад: Create a task named deploy in /Users/.../mt, agent mode"
55
+ :hint="promptHint"
56
56
  />
57
57
 
58
58
  <!-- jscpd:ignore-start — formal footer markup; jscpd html-mode aligns its
@@ -83,6 +83,7 @@ import RequestView from './RequestView.vue'
83
83
  const props = defineProps({
84
84
  modelValue: { type: Boolean, default: false },
85
85
  agent: { type: Object, required: true },
86
+ promptHint: { type: String, default: 'наприклад: Create a task named deploy in /Users/.../mt, agent mode' },
86
87
  })
87
88
  const emit = defineEmits(['update:modelValue', 'ran'])
88
89