@cat-factory/app 0.107.0 → 0.107.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.
|
@@ -20,10 +20,14 @@ const isDestructive = computed(() => current.value?.variant === 'destructive')
|
|
|
20
20
|
</script>
|
|
21
21
|
|
|
22
22
|
<template>
|
|
23
|
+
<!-- z-[70]: UModal has no z-index of its own, and confirms are triggered from inside
|
|
24
|
+
the app's full-screen z-50 windows (Model Configuration, Human Test) whose
|
|
25
|
+
dropdowns sit at z-[60] — the dialog must stack above both or it opens invisibly
|
|
26
|
+
behind the window. -->
|
|
23
27
|
<UModal
|
|
24
28
|
v-model:open="model"
|
|
25
29
|
:title="current?.title ?? t('common.confirm.defaultTitle')"
|
|
26
|
-
:ui="{ content: 'max-w-md' }"
|
|
30
|
+
:ui="{ overlay: 'z-[70]', content: 'z-[70] max-w-md' }"
|
|
27
31
|
>
|
|
28
32
|
<template #body>
|
|
29
33
|
<div class="flex items-start gap-3" data-testid="confirm-dialog">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.107.
|
|
3
|
+
"version": "0.107.2",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"valibot": "^1.4.2",
|
|
35
35
|
"vue": "3.5.39",
|
|
36
36
|
"wretch": "^3.0.9",
|
|
37
|
-
"@cat-factory/contracts": "0.
|
|
37
|
+
"@cat-factory/contracts": "0.117.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@toad-contracts/testing": "0.3.2",
|