bfg-common 1.3.553 → 1.3.554

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[]
@@ -27,8 +27,7 @@
27
27
  </span>
28
28
 
29
29
  <div class="context-children">
30
- <!-- <common-context-recursion-->
31
- <temp-context-recursion
30
+ <common-context-recursion
32
31
  v-show="item.isShowItems"
33
32
  :action-loading="props.actionLoading"
34
33
  :items="item.items"
@@ -41,7 +40,7 @@
41
40
 
42
41
  <script setup lang="ts">
43
42
  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'
43
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
45
44
 
46
45
  const props = defineProps<{
47
46
  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.553",
4
+ "version": "1.3.554",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",