@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hywax/cms",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "configKey": "cms",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.1",
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.20";
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-md",
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 _ui = computed(() => tv({ extend: tv(theme), ...appConfig.cms?.autocompleteSelect || {} })());
170
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.cms?.autocompleteSelect || {} })());
170
171
  </script>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hywax/cms",
3
3
  "type": "module",
4
- "version": "0.0.20",
4
+ "version": "0.0.21",
5
5
  "description": "Hywax CMS. ⚠️ This package is intended for internal use only.",
6
6
  "repository": {
7
7
  "type": "git",