@hostlink/nuxt-light 0.0.84 → 0.0.85

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,5 +1,5 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "0.0.84"
4
+ "version": "0.0.85"
5
5
  }
@@ -1,5 +1,5 @@
1
- <script setup lang="ts">
2
- import { ModelField } from '@hostlink/light';
1
+ <script setup>
2
+
3
3
 
4
4
 
5
5
  const props = defineProps({
@@ -7,7 +7,7 @@ const props = defineProps({
7
7
  type: Object
8
8
  },
9
9
  fields: {
10
- type: Array<ModelField>
10
+ type: Array
11
11
  }
12
12
  })
13
13
 
@@ -16,7 +16,7 @@ const props = defineProps({
16
16
  <q-list bordered separator>
17
17
  <template v-if="fields">
18
18
  <l-item v-for="field in fields" :label="field.getRaw().label">
19
- {{ field.getFormattedValue(props.modelValue as any) }}
19
+ {{ field.getFormattedValue(props.modelValue) }}
20
20
  </l-item>
21
21
 
22
22
  </template>
@@ -21,4 +21,4 @@ import getModelColumns from './getModelColumns';
21
21
  declare const notify: (message: string, color?: string) => void;
22
22
  import getID from "./getID";
23
23
  declare const getApiBase: () => {};
24
- export { addObject, f, getApiUrl, getCurrentUser, getObject, list, listData, m, q, removeObject, t, updateObject, notify, getID, deleteObject, listObject, isGranted, getApiBase, loadObject, GQLFieldBuilder, getModelField, getModelFields, getModelColumns };
24
+ export { addObject, f, getApiUrl, getCurrentUser, getObject, list, listData, m, q, removeObject, t, updateObject, notify, getID, deleteObject, listObject, isGranted, getApiBase, loadObject, GQLFieldBuilder, getModelField, getModelFields, getModelColumns, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "0.0.84",
3
+ "version": "0.0.85",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": "@hostlink/nuxt-light",
6
6
  "license": "MIT",