@hostlink/nuxt-light 1.48.13 → 1.48.14

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,7 +1,7 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "1.48.13",
4
+ "version": "1.48.14",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -1,3 +1,12 @@
1
+ import { type LCardProps } from './l-card.vue.js';
2
+ export type LAuditCardProps = LCardProps & {
3
+ modelValue: {
4
+ createdTime: string;
5
+ createdBy: string;
6
+ updatedTime: string;
7
+ updatedBy: string;
8
+ };
9
+ };
1
10
  type __VLS_PublicProps = {
2
11
  modelValue: {
3
12
  createdTime: string;
@@ -1,4 +1,5 @@
1
1
  <script setup>
2
+ import {} from "./l-card.vue";
2
3
  const modelValue = defineModel({ type: Object, ...{
3
4
  required: true
4
5
  } });
@@ -1,3 +1,12 @@
1
+ import { type LCardProps } from './l-card.vue.js';
2
+ export type LAuditCardProps = LCardProps & {
3
+ modelValue: {
4
+ createdTime: string;
5
+ createdBy: string;
6
+ updatedTime: string;
7
+ updatedBy: string;
8
+ };
9
+ };
1
10
  type __VLS_PublicProps = {
2
11
  modelValue: {
3
12
  createdTime: string;
@@ -13,7 +13,7 @@ export default (name) => {
13
13
  for (let f of fs) {
14
14
  const field = m.field(f);
15
15
  if (!field) continue;
16
- const option = field;
16
+ const option = { ...field };
17
17
  option.name = field.name ?? f;
18
18
  columns.push(option);
19
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "1.48.13",
3
+ "version": "1.48.14",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": {
6
6
  "type": "git",