bfg-common 1.6.27 → 1.6.29

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.
@@ -235,7 +235,7 @@ const statusCounts = computed<UI_I_IndicatorAlerts>(() => {
235
235
 
236
236
  .table-content {
237
237
  &.alert-warning, &.history-testimony {
238
- :deep(.data-table-header th) {
238
+ :deep(.data-table-header th:not(:last-child)) {
239
239
  min-width: max-content !important;
240
240
  }
241
241
  }
@@ -154,7 +154,7 @@ const emits = defineEmits<{
154
154
  display: flex;
155
155
  flex-wrap: wrap;
156
156
  justify-content: space-between;
157
- grid-column-gap: 12px;
157
+ grid-gap: 12px;
158
158
 
159
159
  &.power {
160
160
  & > div:nth-child(1) {
@@ -135,7 +135,7 @@ const onSaveNewName = (): void => {
135
135
  &:disabled {
136
136
  color: var(--chart-options-name-actions-delete-disabled-text-color);
137
137
 
138
- :deep(.button-icon) {
138
+ :deep(span) {
139
139
  color: #bdc3c7;
140
140
  opacity: 0.44;
141
141
  }
@@ -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.replace(/^([^:]+):/, '[$1]:')
160
+ source.value = file.path
161
161
  }
162
162
  const fileTypes = computed<UI_I_OptionItem[]>(() =>
163
163
  fileTypesFunc(localization.value)
@@ -56,11 +56,6 @@ 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
- })
64
59
  </script>
65
60
 
66
61
  <style>
@@ -106,6 +106,8 @@ const onSelectReservation = (value: number): void => {
106
106
 
107
107
  .ui-checkbox-label {
108
108
  min-height: unset !important;
109
+ height: max-content;
110
+ word-break: break-word;
109
111
  }
110
112
  }
111
113
  </style>
@@ -224,7 +224,7 @@ watch(
224
224
  padding-bottom: 16px;
225
225
 
226
226
  &.is-sm-size {
227
- grid-template-columns: 1fr !important;
227
+ grid-template-columns: 1fr;
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 mt-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 mx-8"
20
+ size="md"
21
+ hide-close-button
22
22
  />
23
23
  <div class="content">
24
24
  <form @submit.prevent="onRename">
@@ -17,11 +17,9 @@
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
- localization.common.optional
23
- }})</label
24
- >
20
+ <label v-else :for="`${props.testIds.name}-name`" class="name-label">{{
21
+ localization.common.name
22
+ }}</label>
25
23
 
26
24
  <common-tooltip-help
27
25
  v-if="!isLoading"
@@ -57,7 +55,7 @@
57
55
  <ui-input
58
56
  v-model="name"
59
57
  id="vm-name-tooltip"
60
- :placeholder="`${localization.common.name}`"
58
+ :placeholder="`${localization.common.name} (${localization.common.optional})`"
61
59
  type="text"
62
60
  maxlength="54"
63
61
  :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.27",
4
+ "version": "1.6.29",
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.26",
21
+ "bfg-uikit": "1.1.25",
22
22
  "eslint-config-prettier": "^8.5.0",
23
23
  "eslint-plugin-myrules": "file:./eslint",
24
24
  "nuxt": "3.11.2",