@frockbot/plugin-audit 0.3.11 → 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 +7 -7
- package/src/client/AuditSection.vue +13 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-audit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"typecheck": "vue-tsc --noEmit -p tsconfig.json"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@frockbot/client-core": "0.3.
|
|
29
|
-
"@frockbot/client-ui": "0.3.
|
|
30
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
31
|
-
"@frockbot/plugin-shell": "0.3.
|
|
32
|
-
"@frockbot/secret-shapes": "0.3.
|
|
28
|
+
"@frockbot/client-core": "0.3.12",
|
|
29
|
+
"@frockbot/client-ui": "0.3.12",
|
|
30
|
+
"@frockbot/kernel-contracts": "0.3.12",
|
|
31
|
+
"@frockbot/plugin-shell": "0.3.12",
|
|
32
|
+
"@frockbot/secret-shapes": "0.3.12",
|
|
33
33
|
"cordis": "4.0.0-rc.8",
|
|
34
34
|
"vue": "3.5.41"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/bun": "1.4.0",
|
|
38
38
|
"@vitejs/plugin-vue": "6.0.8",
|
|
39
|
-
"typescript": "
|
|
39
|
+
"typescript": "npm:typescript-native-bridge@6.0.3-bridge.16.tsgo.7.0.2",
|
|
40
40
|
"vite": "8.2.2",
|
|
41
41
|
"vue-tsc": "3.3.10"
|
|
42
42
|
},
|
|
@@ -212,12 +212,24 @@ function when(entry: AuditEntryV1): string {
|
|
|
212
212
|
gap: 12px;
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
/*
|
|
216
|
+
* The section head wraps rather than squeezing its own description. With the
|
|
217
|
+
* action fixed at its intrinsic width, the sentence was folded into a ~180px
|
|
218
|
+
* ribbon while a quarter of the panel sat empty beside it; below that basis
|
|
219
|
+
* the action takes its own line instead.
|
|
220
|
+
*/
|
|
215
221
|
.audit__header {
|
|
216
222
|
display: flex;
|
|
223
|
+
flex-wrap: wrap;
|
|
217
224
|
align-items: center;
|
|
218
225
|
gap: 10px;
|
|
219
226
|
}
|
|
220
227
|
|
|
228
|
+
.audit__header > :deep(.ui-button),
|
|
229
|
+
.audit__header > button {
|
|
230
|
+
margin-left: auto;
|
|
231
|
+
}
|
|
232
|
+
|
|
221
233
|
.audit__icon {
|
|
222
234
|
display: grid;
|
|
223
235
|
width: var(--frock-avatar-sm);
|
|
@@ -233,7 +245,7 @@ function when(entry: AuditEntryV1): string {
|
|
|
233
245
|
.audit__intro {
|
|
234
246
|
display: flex;
|
|
235
247
|
min-width: 0;
|
|
236
|
-
flex: 1 1
|
|
248
|
+
flex: 1 1 14rem;
|
|
237
249
|
flex-direction: column;
|
|
238
250
|
}
|
|
239
251
|
|