bfg-common 1.4.517 → 1.4.519

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.
@@ -1,8 +1,8 @@
1
1
  <template>
2
2
  <ul class="context-wrap relative">
3
- <span v-if="props.isLoading">
3
+ <template v-if="props.isLoading">
4
4
  <ui-loader2 class="context-loader" test-id="context-menu" />
5
- </span>
5
+ </template>
6
6
  <li
7
7
  v-for="(item, key) in props.items"
8
8
  :key="key"
@@ -73,9 +73,9 @@ const emits = defineEmits<{
73
73
 
74
74
  .context-loader {
75
75
  position: absolute;
76
- width: 60px;
77
- top: calc(50% - 30px);
78
- left: calc(50% - 30px);
76
+ width: 40px;
77
+ top: calc(50% - 20px);
78
+ left: calc(50% - 20px);
79
79
  }
80
80
 
81
81
  .menu-item {
@@ -1,12 +1,12 @@
1
1
  <template>
2
- <ul class="context-wrap">
3
- <span v-if="props.isLoading">
2
+ <ul class="context-wrap">{{props.isLoading}}
3
+ <template v-if="props.isLoading">
4
4
  <atoms-loader-pre-loader
5
5
  id="loader"
6
6
  class="absolute-center context-menu__loading"
7
7
  :show="true"
8
8
  />
9
- </span>
9
+ </template>
10
10
  <li
11
11
  v-for="(item, key) in props.items"
12
12
  :key="key"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.517",
4
+ "version": "1.4.519",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",