bfg-common 1.3.545 → 1.3.547

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.
@@ -2410,5 +2410,6 @@
2410
2410
  "interfaces": "Інтэрфейсы",
2411
2411
  "agent": "Агент",
2412
2412
  "dnsName": "Імя DNS",
2413
- "createHost": "Стварыць хост"
2413
+ "createHost": "Стварыць хост",
2414
+ "markAllRead": "Адзначце ўсе як прачытаныя"
2414
2415
  }
@@ -2414,5 +2414,6 @@
2414
2414
  "interfaces": "Interfaces",
2415
2415
  "agent": "Agent",
2416
2416
  "dnsName": "DNS name",
2417
- "createHost": "Create Host"
2417
+ "createHost": "Create Host",
2418
+ "markAllRead": "Mark all as read"
2418
2419
  }
@@ -2414,5 +2414,6 @@
2414
2414
  "interfaces": "Ինտերֆեյսեր",
2415
2415
  "agent": "Գործակալ",
2416
2416
  "dnsName": "DNS անունը",
2417
- "createHost": "Ստեղծել հոսթ"
2417
+ "createHost": "Ստեղծել հոսթ",
2418
+ "markAllRead": "Նշեք բոլորը որպես կարդացված"
2418
2419
  }
@@ -2413,5 +2413,6 @@
2413
2413
  "interfaces": "Интерфейстер",
2414
2414
  "agent": "Агент",
2415
2415
  "dnsName": "DNS атауы",
2416
- "createHost": "Хост жасау"
2416
+ "createHost": "Хост жасау",
2417
+ "markAllRead": "Барлығын оқылған деп белгілеңіз"
2417
2418
  }
@@ -2419,5 +2419,6 @@
2419
2419
  "interfaces": "Интерфейсы",
2420
2420
  "agent": "Агент",
2421
2421
  "dnsName": "DNS-имя",
2422
- "createHost": "Создать хост"
2422
+ "createHost": "Создать хост",
2423
+ "markAllRead": "Отметьте все как прочитанные"
2423
2424
  }
@@ -2413,5 +2413,6 @@
2413
2413
  "interfaces": "接口",
2414
2414
  "agent": "代理人",
2415
2415
  "dnsName": "DNS名称",
2416
- "createHost": "创建主机"
2416
+ "createHost": "创建主机",
2417
+ "markAllRead": "标记为已读"
2417
2418
  }
@@ -15,7 +15,7 @@
15
15
  />
16
16
 
17
17
  <common-wizards-datastore-add-shared-storm-device-selection
18
- v-show="mode === 'sphere' && props.stepPosition === 1"
18
+ v-if="mode === 'sphere' && props.stepPosition === 1"
19
19
  v-model:lun-disk="selectedLunDisk"
20
20
  mode="sphere"
21
21
  :device-selection-submit="props.localCreateNameSubmit"
@@ -30,8 +30,12 @@
30
30
  <atoms-the-icon class="error-icon" name="info-circle" />
31
31
  </div>
32
32
 
33
- <div class="clr-subtext" data-id="storm-datastore-name-field-require">
34
- {{ formErrors?.errors?.name?.[0] || '' }}
33
+ <div
34
+ v-if="nameErrorText"
35
+ class="clr-subtext"
36
+ data-id="storm-datastore-name-field-require"
37
+ >
38
+ {{ nameErrorText }}
35
39
  </div>
36
40
  </div>
37
41
  </div>
@@ -161,6 +165,10 @@ const onInput = (): void => {
161
165
  valid.isValid ? removeInputValidation() : showValidationErrors(valid)
162
166
  }
163
167
 
168
+ const nameErrorText = computed<string>(
169
+ () => formErrors.value?.errors?.name?.[0] || ''
170
+ )
171
+
164
172
  const validation = $validation.call({})
165
173
  const defaultForm: UI_I_FormValidationDataStore = defaultFormFunc(
166
174
  localization.value
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.545",
4
+ "version": "1.3.547",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -35,7 +35,7 @@
35
35
  "@vueuse/components": "^10.1.2",
36
36
  "date-fns": "^2.29.3",
37
37
  "bfg-nuxt-3-graph": "^1.0.15",
38
- "bfg-uikit": "1.0.78",
38
+ "bfg-uikit": "1.0.79",
39
39
  "html2canvas": "^1.4.1",
40
40
  "prettier-eslint": "^15.0.1"
41
41
  }