@frockbot/plugin-bot-template 0.3.10 → 0.3.12

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": "@frockbot/plugin-bot-template",
3
- "version": "0.3.10",
3
+ "version": "0.3.12",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -24,23 +24,23 @@
24
24
  "typecheck": "vue-tsc --noEmit -p tsconfig.json"
25
25
  },
26
26
  "dependencies": {
27
- "@frockbot/client-core": "0.3.10",
28
- "@frockbot/client-ui": "0.3.10",
29
- "@frockbot/configuration-core": "0.3.10",
30
- "@frockbot/connection-core": "0.3.10",
31
- "@frockbot/kernel-agent-loop": "0.3.10",
32
- "@frockbot/kernel-contracts": "0.3.10",
33
- "@frockbot/plugin-settings": "0.3.10",
34
- "@frockbot/plugin-shell": "0.3.10",
35
- "@frockbot/template-core": "0.3.10",
27
+ "@frockbot/client-core": "0.3.12",
28
+ "@frockbot/client-ui": "0.3.12",
29
+ "@frockbot/configuration-core": "0.3.12",
30
+ "@frockbot/connection-core": "0.3.12",
31
+ "@frockbot/kernel-agent-loop": "0.3.12",
32
+ "@frockbot/kernel-contracts": "0.3.12",
33
+ "@frockbot/plugin-settings": "0.3.12",
34
+ "@frockbot/plugin-shell": "0.3.12",
35
+ "@frockbot/template-core": "0.3.12",
36
36
  "cordis": "4.0.0-rc.8",
37
37
  "vue": "3.5.41"
38
38
  },
39
39
  "devDependencies": {
40
- "@frockbot/plugin-tools": "0.3.10",
40
+ "@frockbot/plugin-tools": "0.3.12",
41
41
  "@types/bun": "1.4.0",
42
42
  "@vitejs/plugin-vue": "6.0.8",
43
- "typescript": "5.9.3",
43
+ "typescript": "npm:typescript-native-bridge@6.0.3-bridge.16.tsgo.7.0.2",
44
44
  "vite": "8.2.2",
45
45
  "vue-tsc": "3.3.10"
46
46
  },
@@ -206,12 +206,24 @@ async function plan(): Promise<void> {
206
206
  gap: 12px;
207
207
  }
208
208
 
209
+ /*
210
+ * The section head wraps rather than squeezing its own description. With the
211
+ * action fixed at its intrinsic width, the sentence was folded into a ~180px
212
+ * ribbon while a quarter of the panel sat empty beside it; below that basis
213
+ * the action takes its own line instead.
214
+ */
209
215
  .import__header {
210
216
  display: flex;
217
+ flex-wrap: wrap;
211
218
  align-items: center;
212
219
  gap: 10px;
213
220
  }
214
221
 
222
+ .import__header > :deep(.ui-button),
223
+ .import__header > button {
224
+ margin-left: auto;
225
+ }
226
+
215
227
  .import__icon {
216
228
  display: grid;
217
229
  width: var(--frock-avatar-sm);
@@ -227,7 +239,7 @@ async function plan(): Promise<void> {
227
239
  .import__intro {
228
240
  display: flex;
229
241
  min-width: 0;
230
- flex: 1 1 auto;
242
+ flex: 1 1 14rem;
231
243
  flex-direction: column;
232
244
  }
233
245