@hywax/cms 0.0.20 → 0.0.21
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
|
@@ -6,7 +6,7 @@ import { snakeCase, kebabCase } from 'scule';
|
|
|
6
6
|
import { readFile, writeFile } from 'node:fs/promises';
|
|
7
7
|
|
|
8
8
|
const name = "@hywax/cms";
|
|
9
|
-
const version = "0.0.
|
|
9
|
+
const version = "0.0.21";
|
|
10
10
|
|
|
11
11
|
function createContext(options, nuxt) {
|
|
12
12
|
const { resolve } = createResolver(import.meta.url);
|
|
@@ -326,7 +326,7 @@ const tableCellSeo = {
|
|
|
326
326
|
const tableCellUser = {
|
|
327
327
|
slots: {
|
|
328
328
|
root: "flex items-center gap-2",
|
|
329
|
-
avatar: "bg-elevated size-7 rounded-
|
|
329
|
+
avatar: "bg-elevated size-7 rounded-full",
|
|
330
330
|
container: "text-xs",
|
|
331
331
|
name: "font-medium text-default",
|
|
332
332
|
description: "text-muted truncate max-w-40"
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
:placeholder="placeholder"
|
|
12
12
|
:content="{ 'data-autocomplete-select-content': autocompleteSelectId }"
|
|
13
13
|
:multiple="multiple"
|
|
14
|
+
:class="ui.root({ class: [props.ui?.root, props.class] })"
|
|
14
15
|
@update:model-value="emit('update:modelValue', $event)"
|
|
15
16
|
>
|
|
16
17
|
<template v-if="modelValue && !props.multiple">
|
|
@@ -166,5 +167,5 @@ function useAutocompleteCache(options) {
|
|
|
166
167
|
};
|
|
167
168
|
return { selectedItemCache, getCachedLabel: getCachedLabel2 };
|
|
168
169
|
}
|
|
169
|
-
const
|
|
170
|
+
const ui = computed(() => tv({ extend: tv(theme), ...appConfig.cms?.autocompleteSelect || {} })());
|
|
170
171
|
</script>
|