bfg-common 1.4.688 → 1.4.689

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.
@@ -7,6 +7,7 @@
7
7
  <common-pages-tasks-table
8
8
  :table-data="tasksList?.items || []"
9
9
  :loading="isLoading"
10
+ :project="props.project"
10
11
  />
11
12
  </div>
12
13
  </template>
@@ -18,10 +19,15 @@ import type {
18
19
  UI_I_DataTableQuery,
19
20
  } from '~/lib/models/table/interfaces'
20
21
  import type { UI_I_Task } from '~/lib/models/store/tasks/interfaces'
22
+ import type { UI_T_Project } from '~/lib/models/types'
21
23
 
22
24
  const localization = computed<UI_I_Localization>(() => useLocal())
23
25
  const { $store }: any = useNuxtApp()
24
26
 
27
+ const props = defineProps<{
28
+ project: UI_T_Project
29
+ }>()
30
+
25
31
  const pagination = ref<UI_I_Pagination>({
26
32
  page: 1,
27
33
  pageSize: 100,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.688",
4
+ "version": "1.4.689",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",