bfg-common 1.5.447 → 1.5.448

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.
@@ -52,11 +52,12 @@
52
52
  </template>
53
53
 
54
54
  <script setup lang="ts">
55
+ import type { UI_T_FeedbackType } from '~/components/common/feedback/lib/models/types'
55
56
  import type { UI_I_FeedbackButtonsItem } from './lib/models/interfaces'
56
57
  import type { UI_I_Localization } from '~/lib/models/interfaces'
57
58
 
58
59
  const props = defineProps<{
59
- select: number | null
60
+ select: UI_T_FeedbackType
60
61
  items: UI_I_FeedbackButtonsItem[]
61
62
  }>()
62
63
  const emits = defineEmits<{
@@ -1,7 +1,6 @@
1
1
  <template>
2
2
  <common-layout-the-header-modals-reconnect-new
3
- v-if="isNewView"
4
- :is-show="isShow"
3
+ v-if="isNewView && isShow"
5
4
  :title="title"
6
5
  :timer="timer"
7
6
  :total-time="totalTime"
@@ -9,8 +8,7 @@
9
8
  @reconnect="onReconnect"
10
9
  />
11
10
  <common-layout-the-header-modals-reconnect-old
12
- v-else
13
- :is-show="isShow"
11
+ v-else-if="!isNewView && isShow"
14
12
  :title="title"
15
13
  :timer="timer"
16
14
  :total-time="totalTime"
@@ -1,11 +1,11 @@
1
1
  <template>
2
2
  <ui-modal
3
- :show="props.isShow"
4
3
  :title="props.title"
5
4
  :texts="modalTexts"
6
5
  test-id="reconnect-modal"
7
6
  size="sm"
8
7
  width="560px"
8
+ show
9
9
  @hide="emits('logout')"
10
10
  @submit="emits('reconnect')"
11
11
  >
@@ -36,7 +36,6 @@ import type { UI_I_ModalTexts } from '~/node_modules/bfg-uikit/components/ui/mod
36
36
  import type { UI_I_Localization } from '~/lib/models/interfaces'
37
37
 
38
38
  const props = defineProps<{
39
- isShow: boolean
40
39
  title: string
41
40
  timer: NodeJS.Timer | null
42
41
  totalTime: number
@@ -1,11 +1,11 @@
1
1
  <template>
2
2
  <atoms-modal
3
- :show="props.isShow"
4
3
  :title="props.title"
5
4
  test-id="connection-timeout-reconnect-modal"
6
5
  width="580px"
7
6
  class="connection-timeout"
8
7
  is-hide-close-icon
8
+ show
9
9
  >
10
10
  <template #modalBody>
11
11
  <div class="connection-timeout__body">
@@ -43,7 +43,6 @@
43
43
  import type { UI_I_Localization } from '~/lib/models/interfaces'
44
44
 
45
45
  const props = defineProps<{
46
- isShow: boolean
47
46
  title: string
48
47
  timer: NodeJS.Timer | null
49
48
  totalTime: number
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.447",
4
+ "version": "1.5.448",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",