bfg-common 1.6.25 → 1.6.27

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.
@@ -2648,7 +2648,8 @@
2648
2648
  "languageDesc1": "Выберыце мову адлюстравання",
2649
2649
  "remoteConsoleVmrc1": "Аддаленая кансоль (VMRC)",
2650
2650
  "viewDesc1": "Выберыце інтэрфейс і візуальныя налады",
2651
- "thisLdapConnectionNotSecured": "Гэта LDAP-злучэнне не абаронена. Каб абараніць яго, загрузіце SSL-сертыфікат."
2651
+ "thisLdapConnectionNotSecured": "Гэта LDAP-злучэнне не абаронена. Каб абараніць яго, загрузіце SSL-сертыфікат.",
2652
+ "ha": "HA"
2652
2653
  },
2653
2654
  "auth": {
2654
2655
  "welcomeTo": "Сардэчна запрашаем у",
@@ -2652,7 +2652,8 @@
2652
2652
  "languageDesc1": "Select display language",
2653
2653
  "remoteConsoleVmrc1": "Remote Console (VMRC)",
2654
2654
  "viewDesc1": "Select interface and visual preferences",
2655
- "thisLdapConnectionNotSecured": "This LDAP connection is not secured. To secure this LDAP connection, upload an SSL certificate."
2655
+ "thisLdapConnectionNotSecured": "This LDAP connection is not secured. To secure this LDAP connection, upload an SSL certificate.",
2656
+ "ha": "HA"
2656
2657
  },
2657
2658
  "auth": {
2658
2659
  "welcomeTo": "Welcome to",
@@ -2652,7 +2652,8 @@
2652
2652
  "languageDesc1": "Ընտրեք ցուցադրման լեզուն",
2653
2653
  "remoteConsoleVmrc1": "Հեռավար կոնսոլ (VMRC)",
2654
2654
  "viewDesc1": "Ընտրեք ինտերֆեյսը և տեսողական նախընտրությունները",
2655
- "thisLdapConnectionNotSecured": "Այս LDAP միացումը ապահովված չէ։ Այն ապահովելու համար բեռնեք SSL վկայական։"
2655
+ "thisLdapConnectionNotSecured": "Այս LDAP միացումը ապահովված չէ։ Այն ապահովելու համար բեռնեք SSL վկայական։",
2656
+ "ha": "HA"
2656
2657
  },
2657
2658
  "auth": {
2658
2659
  "welcomeTo": "Բարի գալուստ",
@@ -2651,7 +2651,8 @@
2651
2651
  "languageDesc1": "Көрсету тілін таңдаңыз",
2652
2652
  "remoteConsoleVmrc1": "Қашықтан басқару консолі (VMRC)",
2653
2653
  "viewDesc1": "Интерфейс пен визуалды параметрлерді таңдаңыз",
2654
- "thisLdapConnectionNotSecured": "Бұл LDAP қосылымы қорғалмаған. Оны қорғау үшін SSL сертификатын жүктеңіз."
2654
+ "thisLdapConnectionNotSecured": "Бұл LDAP қосылымы қорғалмаған. Оны қорғау үшін SSL сертификатын жүктеңіз.",
2655
+ "ha": "HA"
2655
2656
  },
2656
2657
  "auth": {
2657
2658
  "welcomeTo": "Қош келдіңіз",
@@ -2651,7 +2651,8 @@
2651
2651
  "languageDesc1": "Выберите язык отображения",
2652
2652
  "remoteConsoleVmrc1": "Удалённая консоль (VMRC)",
2653
2653
  "viewDesc1": "Выберите интерфейс и визуальные настройки",
2654
- "thisLdapConnectionNotSecured": "Это LDAP-соединение не защищено. Чтобы защитить его, загрузите SSL-сертификат."
2654
+ "thisLdapConnectionNotSecured": "Это LDAP-соединение не защищено. Чтобы защитить его, загрузите SSL-сертификат.",
2655
+ "ha": "HA"
2655
2656
  },
2656
2657
  "auth": {
2657
2658
  "welcomeTo": "Добро пожаловать в",
@@ -2649,7 +2649,8 @@
2649
2649
  "languageDesc1": "选择显示语言",
2650
2650
  "remoteConsoleVmrc1": "远程控制台(VMRC)",
2651
2651
  "viewDesc1": "选择界面和视觉偏好设置",
2652
- "thisLdapConnectionNotSecured": "此 LDAP 连接未受保护。要保护该连接,请上传 SSL 证书。"
2652
+ "thisLdapConnectionNotSecured": "此 LDAP 连接未受保护。要保护该连接,请上传 SSL 证书。",
2653
+ "ha": "HA"
2653
2654
  },
2654
2655
  "auth": {
2655
2656
  "welcomeTo": "欢迎来到",
@@ -157,7 +157,7 @@ const onHideFileModal = (): void => {
157
157
  }, 0)
158
158
  }
159
159
  const onSelectFile = (file: UI_I_FileTreeNode): void => {
160
- source.value = file.path
160
+ source.value = file.path.replace(/^([^:]+):/, '[$1]:')
161
161
  }
162
162
  const fileTypes = computed<UI_I_OptionItem[]>(() =>
163
163
  fileTypesFunc(localization.value)
@@ -56,6 +56,11 @@ const emits = defineEmits<{
56
56
  }>()
57
57
 
58
58
  const localization = computed<UI_I_Localization>(() => useLocal())
59
+
60
+ onMounted(() => {
61
+ const cdDvdMediaInputElement = document.getElementById('vm-wizard-dvd-media-input')
62
+ cdDvdMediaInputElement?.classList.remove('text-ellipsis')
63
+ })
59
64
  </script>
60
65
 
61
66
  <style>
@@ -224,7 +224,7 @@ watch(
224
224
  padding-bottom: 16px;
225
225
 
226
226
  &.is-sm-size {
227
- grid-template-columns: 1fr;
227
+ grid-template-columns: 1fr !important;
228
228
  }
229
229
 
230
230
  &.three-items {
@@ -12,13 +12,13 @@
12
12
  >
13
13
  <template #content>
14
14
  <ui-alert
15
- v-if="props.errors.length"
16
- :messages="props.errors.length && !isEmptyName ? props.errors : []"
17
- test-id="vm-rename-error-alert"
18
- type="error"
19
- class="mb-2 mx-8"
20
- size="md"
21
- hide-close-button
15
+ v-if="props.errors.length"
16
+ :messages="props.errors.length && !isEmptyName ? props.errors : []"
17
+ test-id="vm-rename-error-alert"
18
+ type="error"
19
+ class="mb-2 mt-2 mx-8"
20
+ size="md"
21
+ hide-close-button
22
22
  />
23
23
  <div class="content">
24
24
  <form @submit.prevent="onRename">
@@ -17,9 +17,11 @@
17
17
  <div class="name-field">
18
18
  <div class="flex-1 flex-align-center">
19
19
  <ui-skeleton-item v-if="isLoading" width="112px" height="20px" />
20
- <label v-else :for="`${props.testIds.name}-name`" class="name-label">{{
21
- localization.common.name
22
- }}</label>
20
+ <label v-else :for="`${props.testIds.name}-name`" class="name-label"
21
+ >{{ localization.common.name }} ({{
22
+ localization.common.optional
23
+ }})</label
24
+ >
23
25
 
24
26
  <common-tooltip-help
25
27
  v-if="!isLoading"
@@ -55,7 +57,7 @@
55
57
  <ui-input
56
58
  v-model="name"
57
59
  id="vm-name-tooltip"
58
- :placeholder="`${localization.common.name} (${localization.common.optional})`"
60
+ :placeholder="`${localization.common.name}`"
59
61
  type="text"
60
62
  maxlength="54"
61
63
  :error="props.nameErrorText"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.6.25",
4
+ "version": "1.6.27",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -18,7 +18,7 @@
18
18
  "@vueuse/core": "10.1.2",
19
19
  "@vueuse/nuxt": "10.1.2",
20
20
  "bfg-nuxt-3-graph": "1.0.27",
21
- "bfg-uikit": "1.1.25",
21
+ "bfg-uikit": "1.1.26",
22
22
  "eslint-config-prettier": "^8.5.0",
23
23
  "eslint-plugin-myrules": "file:./eslint",
24
24
  "nuxt": "3.11.2",