v-nuxt-ui 0.2.32 → 0.2.34

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
@@ -7,7 +7,7 @@
7
7
  "dependencies": [
8
8
  "@nuxt/ui"
9
9
  ],
10
- "version": "0.2.32",
10
+ "version": "0.2.34",
11
11
  "builder": {
12
12
  "@nuxt/module-builder": "1.0.2",
13
13
  "unbuild": "3.6.1"
@@ -37,7 +37,6 @@ defineExpose({
37
37
  color="neutral"
38
38
  :increment="false"
39
39
  :decrement="false"
40
- class="max-w-16"
41
40
  @keyup.enter="async () => {
42
41
  await triggerFetching?.();
43
42
  }"
@@ -5,6 +5,7 @@ export const getCreateAtColumn = (createdAtSortOpr = "desc") => ({
5
5
  accessorKey: "createdAt",
6
6
  header: "\u521B\u5EFA\u65F6\u95F4",
7
7
  cell: ({ row }) => dayjs(row.original.createdAt).format(dateTimeFormat),
8
+ preferred: false,
8
9
  filterOption: {
9
10
  type: "date-picker"
10
11
  },
@@ -17,6 +18,7 @@ export const getOprColumns = (createdAtSortOpr = "desc") => [
17
18
  accessorKey: "createdBy",
18
19
  header: "\u521B\u5EFA\u4EBA",
19
20
  cell: ({ row }) => row.original.creator?.nickname || "/",
21
+ preferred: false,
20
22
  filterOption: {
21
23
  type: "async-select",
22
24
  listApi: useUserApi().list,
@@ -32,6 +34,7 @@ export const getOprColumns = (createdAtSortOpr = "desc") => [
32
34
  accessorKey: "updatedBy",
33
35
  header: "\u66F4\u65B0\u4EBA",
34
36
  cell: ({ row }) => row.original.updater?.nickname || "/",
37
+ preferred: false,
35
38
  filterOption: {
36
39
  type: "async-select",
37
40
  listApi: useUserApi().list,
@@ -46,6 +49,7 @@ export const getOprColumns = (createdAtSortOpr = "desc") => [
46
49
  accessorKey: "updatedAt",
47
50
  header: "\u66F4\u65B0\u65F6\u95F4",
48
51
  cell: ({ row }) => dayjs(row.original.updatedAt).format(dateTimeFormat),
52
+ preferred: false,
49
53
  filterOption: {
50
54
  type: "date-picker"
51
55
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v-nuxt-ui",
3
- "version": "0.2.32",
3
+ "version": "0.2.34",
4
4
  "description": "Veken UI Component Library - Reusable Nuxt UI components, composables, and utilities for enterprise applications",
5
5
  "type": "module",
6
6
  "style": "./dist/runtime/index.css",