bfg-common 1.3.549 → 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
@@ -0,0 +1,86 @@
1
+ <template>
2
+ <common-context-recursion-new
3
+ v-if="isNewView"
4
+ :items="props.items"
5
+ :action-loading="props.actionLoading"
6
+ :is-loading="isLoading"
7
+ :test-id="props.testId"
8
+ @select-item="selectItem"
9
+ @toggle-items="toggleItems"
10
+ />
11
+ <common-context-recursion-old
12
+ v-else
13
+ :items="props.items"
14
+ :action-loading="props.actionLoading"
15
+ :is-loading="isLoading"
16
+ :test-id="props.testId"
17
+ @select-item="selectItem"
18
+ @toggle-items="toggleItems"
19
+ />
20
+ </template>
21
+
22
+ <script setup lang="ts">
23
+ import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
24
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
25
+
26
+ const props = defineProps<{
27
+ items: UI_I_ContextMenuItem[]
28
+ actionLoading: string | null
29
+ testId?: string
30
+ }>()
31
+ const emits = defineEmits<{
32
+ (event: 'select-item', value: UI_I_ContextMenuItem): void
33
+ }>()
34
+
35
+ const { $store }: any = useNuxtApp()
36
+ const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
37
+
38
+ const isLoading = computed<boolean>(
39
+ () => !!props.items.find((item) => item.actionType === props.actionLoading)
40
+ )
41
+
42
+ const selectItem = (item: UI_I_ContextMenuItem): void => {
43
+ if (item.disabled) return
44
+
45
+ emits('select-item', item)
46
+ }
47
+
48
+ const setElementPosition = (event: I_HTMLLiElement): void => {
49
+ const top = event.target.getBoundingClientRect().top
50
+ const childMenu = event.target.children[1].children[0]
51
+ childMenu.style.top = `${top}px`
52
+
53
+ const childMenuRect = (childMenu.getBoundingClientRect() as DOMRect) || null
54
+
55
+ // Обрабатываем, если попап вишел за viewport (с права)
56
+ if (childMenuRect.right > window.innerWidth) {
57
+ event.target.classList.add('left')
58
+ } else {
59
+ event.target.classList.remove('left')
60
+ }
61
+
62
+ // Обрабатываем, если попап вишел за viewport (с низу)
63
+ if (childMenuRect.bottom > window.innerHeight) {
64
+ childMenu.style.top = 'auto'
65
+ childMenu.style.bottom = '0px'
66
+ } else {
67
+ childMenu.style.bottom = 'unset'
68
+ }
69
+ }
70
+
71
+ const toggleItems = (
72
+ data: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
73
+ ): void => {
74
+ const [item, show, e] = data
75
+ if (!item.items.length || item.disabled) {
76
+ return
77
+ }
78
+ item.isShowItems = show
79
+
80
+ nextTick(() => {
81
+ setElementPosition(e)
82
+ })
83
+ }
84
+ </script>
85
+
86
+ <style scoped lang="scss"></style>
@@ -0,0 +1,199 @@
1
+ <template>
2
+ <ul class="context-wrap relative">
3
+ <span v-if="props.isLoading">
4
+ <ui-loader2 class="context-loader" test-id="context-menu" />
5
+ </span>
6
+ <li
7
+ v-for="(item, key) in props.items"
8
+ :key="key"
9
+ :class="[
10
+ 'menu-item',
11
+ { disabled: item.disabled || isLoading },
12
+ { 'show-children': item.isShowItems },
13
+ { 'has-divider': item.hasBorderTop },
14
+ ]"
15
+ @mouseenter="emits('toggle-items', [item, true, $event])"
16
+ @mouseleave="emits('toggle-items', [item, false, $event])"
17
+ >
18
+ <span
19
+ class="context-link"
20
+ :data-id="`${item.testId}-context-link`"
21
+ @mousedown="emits('select-item', item)"
22
+ >
23
+ <span :class="['context-icon', item.iconClassName]" />
24
+ <span class="menu-item-text">{{ item.name }}</span>
25
+ <ui-icon v-if="item.items.length" name="arrow" class="arrow-icon" />
26
+ <span v-if="item.shortcut" class="shortcut">{{ item.shortcut }}</span>
27
+ </span>
28
+
29
+ <div class="context-children">
30
+ <!-- <common-context-recursion-->
31
+ <temp-context-recursion
32
+ v-show="item.isShowItems"
33
+ :action-loading="props.actionLoading"
34
+ :items="item.items"
35
+ @select-item="emits('select-item', $event)"
36
+ />
37
+ </div>
38
+ </li>
39
+ </ul>
40
+ </template>
41
+
42
+ <script setup lang="ts">
43
+ import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
44
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
45
+
46
+ const props = defineProps<{
47
+ items: UI_I_ContextMenuItem[]
48
+ actionLoading: string | null
49
+ isLoading: boolean
50
+ testId?: string
51
+ }>()
52
+
53
+ const emits = defineEmits<{
54
+ (event: 'select-item', value: UI_I_ContextMenuItem): void
55
+ (
56
+ event: 'toggle-items',
57
+ value: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
58
+ ): void
59
+ }>()
60
+ </script>
61
+
62
+ <style scoped lang="scss">
63
+ .context-wrap {
64
+ width: auto;
65
+ max-width: 400px;
66
+ background: var(--context-menu-bg-color);
67
+ border-radius: 8px;
68
+ user-select: none;
69
+ list-style: none;
70
+ max-height: 100vh;
71
+ box-shadow: 0 4px 20px 0 #0000001f;
72
+ padding: 8px;
73
+
74
+ .context-loader {
75
+ position: absolute;
76
+ width: 60px;
77
+ top: calc(50% - 30px);
78
+ left: calc(50% - 30px);
79
+ }
80
+
81
+ .menu-item {
82
+ position: relative;
83
+ color: var(--context-menu-text-color);
84
+ cursor: pointer;
85
+ border-radius: 4px;
86
+
87
+ &.show-children::after {
88
+ content: '';
89
+ position: absolute;
90
+ top: 0;
91
+ left: 100%;
92
+ width: 12px;
93
+ height: 100%;
94
+ }
95
+
96
+ &:not(:last-child) {
97
+ margin-bottom: 8px;
98
+ }
99
+
100
+ &:not(.disabled) > .context-link:hover {
101
+ background-color: var(--context-menu-item-bg-hover-color);
102
+ color: var(--context-menu-text-hover-color);
103
+ }
104
+ &.disabled {
105
+ opacity: 0.5;
106
+ user-select: none;
107
+ cursor: default;
108
+ }
109
+ &.left {
110
+ &.show-children::after {
111
+ left: -12px;
112
+ }
113
+ :deep(.context-children) {
114
+ left: -12px;
115
+
116
+ .context-wrap {
117
+ transform: translateX(-100%);
118
+ left: auto;
119
+ }
120
+ }
121
+ }
122
+
123
+ &.has-divider::before {
124
+ content: '';
125
+ display: block;
126
+ height: 0.03rem;
127
+ background-color: var(--context-menu-border-color);
128
+ margin-bottom: 8px;
129
+ }
130
+
131
+ .context-link {
132
+ position: relative;
133
+ overflow: hidden;
134
+ text-overflow: ellipsis;
135
+ white-space: nowrap;
136
+ display: flex;
137
+ align-items: center;
138
+ user-select: none;
139
+ border-radius: 4px;
140
+ padding: 6px 8px;
141
+
142
+ .menu-item-text {
143
+ flex: 1 1 0;
144
+ font-size: 13px;
145
+ font-weight: 400;
146
+ line-height: 15.73px;
147
+ }
148
+
149
+ .context-icon {
150
+ margin-right: 8px;
151
+ width: 20px;
152
+ height: 20px;
153
+ }
154
+
155
+ .arrow-icon {
156
+ position: absolute;
157
+ top: 50%;
158
+ margin-top: -8px;
159
+ right: 4px;
160
+ display: inline-block;
161
+ width: 16px;
162
+ height: 16px;
163
+ overflow: hidden;
164
+ transform: rotate(90deg);
165
+ }
166
+
167
+ .shortcut {
168
+ padding-left: 10px;
169
+ }
170
+ }
171
+
172
+ .context-children {
173
+ position: absolute;
174
+ top: 0;
175
+ left: calc(100% + 12px);
176
+
177
+ .context-wrap {
178
+ position: fixed;
179
+ }
180
+ }
181
+ }
182
+ }
183
+ </style>
184
+ <style>
185
+ :root.is-new-view {
186
+ --context-menu-bg-color: #ffffff;
187
+ --context-menu-item-bg-hover-color: rgba(233, 235, 237, 0.4);
188
+ --context-menu-text-color: #4d5d69;
189
+ --context-menu-text-hover-color: #182531;
190
+ --context-menu-border-color: #e9ebed;
191
+ }
192
+ :root.is-new-view.dark-theme {
193
+ --context-menu-bg-color: #334453;
194
+ --context-menu-item-bg-hover-color: rgba(233, 235, 237, 0.06);
195
+ --context-menu-text-color: #e9eaec;
196
+ --context-menu-text-hover-color: #ffffff;
197
+ --context-menu-border-color: rgba(233, 235, 237, 0.12);
198
+ }
199
+ </style>
@@ -1,256 +1,212 @@
1
- <template>
2
- <ul class="context-wrap">
3
- <span v-if="isLoading">
4
- <atoms-loader-pre-loader
5
- id="loader"
6
- class="absolute-center tree-view__loading"
7
- :show="true"
8
- />
9
- </span>
10
- <li
11
- v-for="(item, key) in props.items"
12
- :key="key"
13
- :class="[
14
- 'menu-item',
15
- { disabled: item.disabled || isLoading },
16
- { 'item-header': item.isHeader },
17
- { 'has-border-top': item.hasBorderTop },
18
- ]"
19
- @mouseenter="toggleItems(item, true, $event)"
20
- @mouseleave="toggleItems(item, false, $event)"
21
- >
22
- <span
23
- class="context-link"
24
- :data-id="`${item.testId}-context-link`"
25
- @mousedown="selectItem(item)"
26
- >
27
- <span :class="['context-icon', item.iconClassName]" />
28
- <span class="menu-item-text">{{ item.name }}</span>
29
- <span v-if="item.items.length" class="arrow-icon" />
30
- <span v-if="item.shortcut" class="shortcut">{{ item.shortcut }}</span>
31
- </span>
32
-
33
- <div class="context-children">
34
- <common-context-recursion
35
- v-show="item.isShowItems"
36
- :action-loading="props.actionLoading"
37
- :class="[{ 'child-show': item.isShowItems }]"
38
- :items="item.items"
39
- @select-item="selectItem"
40
- />
41
- </div>
42
- </li>
43
- </ul>
44
- </template>
45
-
46
- <script setup lang="ts">
47
- import { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
48
-
49
- const props = defineProps<{
50
- items: UI_I_ContextMenuItem[]
51
- actionLoading: string | null
52
- testId?: string
53
- }>()
54
- const emits = defineEmits<{
55
- (event: 'select-item', value: UI_I_ContextMenuItem): void
56
- }>()
57
-
58
- const isLoading = computed<boolean>(
59
- () => !!props.items.find((item) => item.actionType === props.actionLoading)
60
- )
61
-
62
- const selectItem = (item: UI_I_ContextMenuItem): void => {
63
- if (item.disabled) return
64
-
65
- emits('select-item', item)
66
- }
67
-
68
- interface HTMLLiElement extends Event {
69
- target: HTMLInputElement
70
- }
71
- const setElementPosition = (event: HTMLLiElement): void => {
72
- const top = event.target.getBoundingClientRect().top
73
- const childMenu = event.target.children[1].children[0]
74
- childMenu.style.top = `${top}px`
75
-
76
- const childMenuRect = (childMenu.getBoundingClientRect() as DOMRect) || null
77
-
78
- // Обрабатываем, если попап вишел за viewport (с права)
79
- if (childMenuRect.right > window.innerWidth) {
80
- event.target.classList.add('left')
81
- } else {
82
- event.target.classList.remove('left')
83
- }
84
-
85
- // Обрабатываем, если попап вишел за viewport (с низу)
86
- if (childMenuRect.bottom > window.innerHeight) {
87
- childMenu.style.top = 'auto'
88
- childMenu.style.bottom = '0px'
89
- } else {
90
- childMenu.style.bottom = 'unset'
91
- }
92
- }
93
-
94
- const toggleItems = (
95
- item: UI_I_ContextMenuItem,
96
- show: boolean,
97
- e: HTMLLiElement
98
- ): void => {
99
- if (!item.items.length || item.disabled) {
100
- return
101
- }
102
- item.isShowItems = show
103
-
104
- nextTick(() => {
105
- setElementPosition(e)
106
- })
107
- }
108
- </script>
109
-
110
- <style scoped lang="scss">
111
- .loader-wrapper {
112
- width: 100%;
113
- height: 100%;
114
- z-index: 100;
115
- }
116
-
117
- .tree-view__loading {
118
- :deep(.spinner) {
119
- width: 45px;
120
- height: 45px;
121
- min-width: 45px;
122
- min-height: 45px;
123
- z-index: 1000;
124
- }
125
- }
126
- .context-wrap {
127
- width: auto;
128
- max-width: 400px;
129
- background: var(--global-bg-color);
130
- border-radius: 0;
131
- color: #333;
132
- border: 1px solid var(--context-menu-border-color);
133
- user-select: none;
134
- list-style: none;
135
- max-height: 100vh;
136
- overflow-y: auto;
137
-
138
- .menu-item {
139
- position: relative;
140
- color: #565656;
141
- border-bottom: 1px solid transparent;
142
- cursor: pointer;
143
- padding: 5px 0 3px;
144
-
145
- &.has-border-top {
146
- border-top: 1px solid var(--context-menu-inset-border-color);
147
- }
148
-
149
- &.item-header {
150
- font-size: 11px;
151
- background-color: var(--context-menu-item-header-color);
152
- cursor: default;
153
- }
154
- &:not(.item-header):not(.disabled):hover {
155
- background-color: var(--context-menu-hover-bg-color);
156
- color: #454545;
157
- border-bottom: 1px solid var(--context-menu-hover-border-color);
158
- }
159
- &.disabled {
160
- opacity: 0.5;
161
- user-select: none;
162
- cursor: default;
163
- }
164
- &.left {
165
- :deep(.context-children) {
166
- left: 0;
167
- background: red;
168
-
169
- .context-wrap {
170
- transform: translateX(-100%);
171
- left: auto;
172
- }
173
- }
174
- }
175
-
176
- .context-link {
177
- position: relative;
178
- overflow: hidden;
179
- text-overflow: ellipsis;
180
- white-space: nowrap;
181
- display: flex;
182
- align-items: center;
183
- user-select: none;
184
- padding: 3px 20px 4px 10px;
185
-
186
- .menu-item-text {
187
- flex: 1 1 0;
188
- }
189
-
190
- .context-icon {
191
- display: inline-block;
192
- margin: -2px 4px 0 0;
193
- vertical-align: middle;
194
- width: 18px;
195
- height: 18px;
196
- }
197
-
198
- .arrow-icon {
199
- position: absolute;
200
- top: 50%;
201
- margin-top: -8px;
202
- right: 4px;
203
- background-image: url('assets/img/icons/sprite.png');
204
- display: inline-block;
205
- width: 16px;
206
- height: 16px;
207
- overflow: hidden;
208
- background-repeat: no-repeat;
209
- font-size: 0;
210
- line-height: 0;
211
- text-align: center;
212
- transform: rotate(90deg);
213
- }
214
-
215
- .shortcut {
216
- padding-left: 10px;
217
- }
218
- }
219
-
220
- .context-children {
221
- position: absolute;
222
- top: 0;
223
- left: 100%;
224
-
225
- .context-wrap {
226
- position: fixed;
227
- }
228
- }
229
- }
230
- }
231
- .tree-view__loading {
232
- :deep(.spinner) {
233
- width: 45px;
234
- height: 45px;
235
- min-width: 45px;
236
- min-height: 45px;
237
- z-index: 1000;
238
- }
239
- }
240
- </style>
241
- <style>
242
- :root {
243
- --context-menu-hover-bg-color: #e8e8e8;
244
- --context-menu-border-color: #949494;
245
- --context-menu-inset-border-color: #d4d5d6;
246
- --context-menu-item-header-color: #eceff2;
247
- --context-menu-hover-border-color: #666;
248
- }
249
- :root.dark-theme {
250
- --context-menu-hover-bg-color: #324f61;
251
- --context-menu-border-color: #495865;
252
- --context-menu-inset-border-color: #485764;
253
- --context-menu-item-header-color: #29414e;
254
- --context-menu-hover-border-color: #fff;
255
- }
256
- </style>
1
+ <template>
2
+ <ul class="context-wrap">
3
+ <span v-if="props.isLoading">
4
+ <atoms-loader-pre-loader
5
+ id="loader"
6
+ class="absolute-center context-menu__loading"
7
+ :show="true"
8
+ />
9
+ </span>
10
+ <li
11
+ v-for="(item, key) in props.items"
12
+ :key="key"
13
+ :class="[
14
+ 'menu-item',
15
+ { disabled: item.disabled || isLoading },
16
+ { 'item-header': item.isHeader },
17
+ { 'has-border-top': item.hasBorderTop },
18
+ ]"
19
+ @mouseenter="emits('toggle-items', [item, true, $event])"
20
+ @mouseleave="emits('toggle-items', [item, false, $event])"
21
+ >
22
+ <span
23
+ class="context-link"
24
+ :data-id="`${item.testId}-context-link`"
25
+ @mousedown="emits('select-item', item)"
26
+ >
27
+ <span :class="['context-icon', item.iconClassName]" />
28
+ <span class="menu-item-text">{{ item.name }}</span>
29
+ <span v-if="item.items.length" class="arrow-icon" />
30
+ <span v-if="item.shortcut" class="shortcut">{{ item.shortcut }}</span>
31
+ </span>
32
+
33
+ <div class="context-children">
34
+ <common-context-recursion
35
+ v-show="item.isShowItems"
36
+ :action-loading="props.actionLoading"
37
+ :class="[{ 'child-show': item.isShowItems }]"
38
+ :items="item.items"
39
+ @select-item="emits('select-item', $event)"
40
+ />
41
+ </div>
42
+ </li>
43
+ </ul>
44
+ </template>
45
+
46
+ <script setup lang="ts">
47
+ import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
48
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
49
+
50
+ const props = defineProps<{
51
+ items: UI_I_ContextMenuItem[]
52
+ actionLoading: string | null
53
+ isLoading: boolean
54
+ testId?: string
55
+ }>()
56
+
57
+ const emits = defineEmits<{
58
+ (event: 'select-item', value: UI_I_ContextMenuItem): void
59
+ (
60
+ event: 'toggle-items',
61
+ value: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
62
+ ): void
63
+ }>()
64
+ </script>
65
+
66
+ <style scoped lang="scss">
67
+ .loader-wrapper {
68
+ width: 100%;
69
+ height: 100%;
70
+ z-index: 100;
71
+ }
72
+
73
+ .context-menu__loading {
74
+ :deep(.spinner) {
75
+ width: 45px;
76
+ height: 45px;
77
+ min-width: 45px;
78
+ min-height: 45px;
79
+ z-index: 1000;
80
+ }
81
+ }
82
+ .context-wrap {
83
+ width: auto;
84
+ max-width: 400px;
85
+ background: var(--global-bg-color);
86
+ border-radius: 0;
87
+ color: #333;
88
+ border: 1px solid var(--context-menu-border-color);
89
+ user-select: none;
90
+ list-style: none;
91
+ max-height: 100vh;
92
+ overflow-y: auto;
93
+
94
+ .menu-item {
95
+ position: relative;
96
+ color: #565656;
97
+ border-bottom: 1px solid transparent;
98
+ cursor: pointer;
99
+ padding: 5px 0 3px;
100
+
101
+ &.has-border-top {
102
+ border-top: 1px solid var(--context-menu-inset-border-color);
103
+ }
104
+
105
+ &.item-header {
106
+ font-size: 11px;
107
+ background-color: var(--context-menu-item-header-color);
108
+ cursor: default;
109
+ }
110
+ &:not(.item-header):not(.disabled):hover {
111
+ background-color: var(--context-menu-hover-bg-color);
112
+ color: #454545;
113
+ border-bottom: 1px solid var(--context-menu-hover-border-color);
114
+ }
115
+ &.disabled {
116
+ opacity: 0.5;
117
+ user-select: none;
118
+ cursor: default;
119
+ }
120
+ &.left {
121
+ :deep(.context-children) {
122
+ left: 0;
123
+ background: red;
124
+
125
+ .context-wrap {
126
+ transform: translateX(-100%);
127
+ left: auto;
128
+ }
129
+ }
130
+ }
131
+
132
+ .context-link {
133
+ position: relative;
134
+ overflow: hidden;
135
+ text-overflow: ellipsis;
136
+ white-space: nowrap;
137
+ display: flex;
138
+ align-items: center;
139
+ user-select: none;
140
+ padding: 3px 20px 4px 10px;
141
+
142
+ .menu-item-text {
143
+ flex: 1 1 0;
144
+ }
145
+
146
+ .context-icon {
147
+ display: inline-block;
148
+ margin: -2px 4px 0 0;
149
+ vertical-align: middle;
150
+ width: 18px;
151
+ height: 18px;
152
+ }
153
+
154
+ .arrow-icon {
155
+ position: absolute;
156
+ top: 50%;
157
+ margin-top: -8px;
158
+ right: 4px;
159
+ background-image: url('assets/img/icons/sprite.png');
160
+ display: inline-block;
161
+ width: 16px;
162
+ height: 16px;
163
+ overflow: hidden;
164
+ background-repeat: no-repeat;
165
+ font-size: 0;
166
+ line-height: 0;
167
+ text-align: center;
168
+ transform: rotate(90deg);
169
+ }
170
+
171
+ .shortcut {
172
+ padding-left: 10px;
173
+ }
174
+ }
175
+
176
+ .context-children {
177
+ position: absolute;
178
+ top: 0;
179
+ left: 100%;
180
+
181
+ .context-wrap {
182
+ position: fixed;
183
+ }
184
+ }
185
+ }
186
+ }
187
+ .context-menu__loading {
188
+ :deep(.spinner) {
189
+ width: 45px;
190
+ height: 45px;
191
+ min-width: 45px;
192
+ min-height: 45px;
193
+ z-index: 1000;
194
+ }
195
+ }
196
+ </style>
197
+ <style>
198
+ :root {
199
+ --context-menu-hover-bg-color: #e8e8e8;
200
+ --context-menu-border-color: #949494;
201
+ --context-menu-inset-border-color: #d4d5d6;
202
+ --context-menu-item-header-color: #eceff2;
203
+ --context-menu-hover-border-color: #666;
204
+ }
205
+ :root.dark-theme {
206
+ --context-menu-hover-bg-color: #324f61;
207
+ --context-menu-border-color: #495865;
208
+ --context-menu-inset-border-color: #485764;
209
+ --context-menu-item-header-color: #29414e;
210
+ --context-menu-hover-border-color: #fff;
211
+ }
212
+ </style>
@@ -0,0 +1,3 @@
1
+ export interface I_HTMLLiElement extends Event {
2
+ target: HTMLInputElement
3
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.549",
4
+ "version": "1.3.551",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",