bfg-common 1.6.56 → 1.6.57

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.
@@ -3863,7 +3863,8 @@
3863
3863
  "up": "Наверсе"
3864
3864
  },
3865
3865
  "adapter": {
3866
- "disable": "Адключаць"
3866
+ "disable": "Адключаць",
3867
+ "rescanAdapterTitle": "Для актывацыі абярыце адаптар"
3867
3868
  },
3868
3869
  "bottomPanel": {
3869
3870
  "failed": "Няўдалы"
@@ -3867,7 +3867,8 @@
3867
3867
  "up": "Up"
3868
3868
  },
3869
3869
  "adapter": {
3870
- "disable": "Disable"
3870
+ "disable": "Disable",
3871
+ "rescanAdapterTitle": "To activate, select an adapter"
3871
3872
  },
3872
3873
  "bottomPanel": {
3873
3874
  "failed": "Failed"
@@ -3867,7 +3867,8 @@
3867
3867
  "up": "Վեր"
3868
3868
  },
3869
3869
  "adapter": {
3870
- "disable": "Անջատել"
3870
+ "disable": "Անջատել",
3871
+ "rescanAdapterTitle": "Ակտիվացնելու համար ընտրեք ադապտեր"
3871
3872
  },
3872
3873
  "bottomPanel": {
3873
3874
  "failed": "Անհաջող"
@@ -3866,7 +3866,8 @@
3866
3866
  "up": "Бойымен"
3867
3867
  },
3868
3868
  "adapter": {
3869
- "disable": "Өшіру"
3869
+ "disable": "Өшіру",
3870
+ "rescanAdapterTitle": "Белсендіру үшін адаптерді таңдаңыз"
3870
3871
  },
3871
3872
  "bottomPanel": {
3872
3873
  "failed": "Сәтсіз"
@@ -3866,7 +3866,8 @@
3866
3866
  "up": "Работает"
3867
3867
  },
3868
3868
  "adapter": {
3869
- "disable": "Отключить"
3869
+ "disable": "Отключить",
3870
+ "rescanAdapterTitle": "Для активации выберите адаптер"
3870
3871
  },
3871
3872
  "bottomPanel": {
3872
3873
  "failed": "Неудавшиеся"
@@ -3864,7 +3864,8 @@
3864
3864
  "up": "向上"
3865
3865
  },
3866
3866
  "adapter": {
3867
- "disable": "禁用"
3867
+ "disable": "禁用",
3868
+ "rescanAdapterTitle": "要激活,请选择一个适配器"
3868
3869
  },
3869
3870
  "bottomPanel": {
3870
3871
  "failed": "失败的"
@@ -57,6 +57,11 @@ const supportLink = computed<string>(() => {
57
57
  padding: 11px 44px;
58
58
 
59
59
  .content {
60
+ @media (max-width: 640px) {
61
+ flex-direction: column;
62
+ gap: 0;
63
+ align-items: flex-start;
64
+ }
60
65
  .company-info {
61
66
  font-size: 14px;
62
67
  line-height: 18px;
@@ -70,6 +75,10 @@ const supportLink = computed<string>(() => {
70
75
 
71
76
  .dote-divider {
72
77
  color: #9da6ad;
78
+
79
+ @media (max-width: 640px) {
80
+ display: none;
81
+ }
73
82
  }
74
83
 
75
84
  .support-link {
@@ -101,6 +101,7 @@ const collapsedItems = computed<UI_I_CollapseNavItem[]>(() => {
101
101
  permission: item.permission,
102
102
  uploaded: item.uploaded,
103
103
  testId: item.testId,
104
+ title: item.title,
104
105
  }
105
106
  })
106
107
  })
@@ -7,4 +7,5 @@ export interface UI_I_Button {
7
7
  testId?: string
8
8
  iconName?: string
9
9
  permission?: string
10
+ title?: string
10
11
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.6.56",
4
+ "version": "1.6.57",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",