bfg-common 1.3.550 → 1.3.551

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.
@@ -16,7 +16,7 @@
16
16
  </template>
17
17
 
18
18
  <script setup lang="ts">
19
- import {
19
+ import type {
20
20
  UI_I_ContextMenuItem,
21
21
  UI_I_ContextMenu,
22
22
  } from '~/components/common/context/lib/models/interfaces'
@@ -1,4 +1,4 @@
1
- import { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
1
+ import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
2
2
 
3
3
  export interface UI_I_ContextMenuByEvent {
4
4
  event: any
@@ -21,7 +21,7 @@
21
21
 
22
22
  <script setup lang="ts">
23
23
  import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
24
- import type { I_HTMLLiElement } from '~/components/common/context/contextRecursion/lib/models/interfaces'
24
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
25
25
 
26
26
  const props = defineProps<{
27
27
  items: UI_I_ContextMenuItem[]
@@ -41,7 +41,7 @@
41
41
 
42
42
  <script setup lang="ts">
43
43
  import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
44
- import type { I_HTMLLiElement } from '~/components/common/context/contextRecursion/lib/models/interfaces'
44
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
45
45
 
46
46
  const props = defineProps<{
47
47
  items: UI_I_ContextMenuItem[]
@@ -45,7 +45,7 @@
45
45
 
46
46
  <script setup lang="ts">
47
47
  import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
48
- import type { I_HTMLLiElement } from '~/components/common/context/contextRecursion/lib/models/interfaces'
48
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
49
49
 
50
50
  const props = defineProps<{
51
51
  items: UI_I_ContextMenuItem[]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.550",
4
+ "version": "1.3.551",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",