@hywax/cms 3.2.0 → 3.2.1
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/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { pascalCase, kebabCase } from 'scule';
|
|
|
7
7
|
import { globSync } from 'tinyglobby';
|
|
8
8
|
|
|
9
9
|
const name = "@hywax/cms";
|
|
10
|
-
const version = "3.2.
|
|
10
|
+
const version = "3.2.1";
|
|
11
11
|
|
|
12
12
|
function createContext(options, nuxt) {
|
|
13
13
|
const { resolve } = createResolver(import.meta.url);
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="relative flex items-center gap-2">
|
|
3
|
-
<div v-if="image" class="overflow-hidden rounded-lg">
|
|
3
|
+
<div v-if="image" class="overflow-hidden rounded-lg shrink-0">
|
|
4
4
|
<UploraImage
|
|
5
5
|
v-bind="image"
|
|
6
6
|
:sizes="[{ width: 32, height: 32, descriptor: '1x' }]"
|
|
7
7
|
:ui="{ picture: 'aspect-square' }"
|
|
8
8
|
/>
|
|
9
9
|
</div>
|
|
10
|
-
<div>
|
|
10
|
+
<div class="flex-1 truncate max-w-100">
|
|
11
11
|
<ULink
|
|
12
12
|
v-if="to"
|
|
13
13
|
:to="to"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<p v-else class="font-medium text-highlighted text-sm">
|
|
20
20
|
{{ label }}
|
|
21
21
|
</p>
|
|
22
|
-
<p v-if="description" class="text-muted text-xs">
|
|
22
|
+
<p v-if="description" class="text-muted text-xs truncate">
|
|
23
23
|
{{ description }}
|
|
24
24
|
</p>
|
|
25
25
|
</div>
|