bfg-common 1.3.248 → 1.3.249

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.
Files changed (27) hide show
  1. package/components/atoms/switch/Switch.vue +111 -111
  2. package/components/atoms/table/compact/Compact.vue +526 -526
  3. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +2 -0
  4. package/components/atoms/table/dataGrid/lib/models/interfaces.ts +1 -0
  5. package/components/atoms/table/dataGrid/lib/utils/constructDataTable.ts +3 -1
  6. package/components/common/vm/actions/clone/Clone.vue +518 -518
  7. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +269 -269
  8. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +693 -693
  9. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/dropdownItems.ts +59 -59
  10. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +165 -165
  11. package/components/common/vm/actions/common/select/storage/lib/config/config.ts +166 -166
  12. package/components/common/vm/actions/editSettings/EditSettings.vue +313 -313
  13. package/components/common/weekSelect/lib/config/options.ts +10 -10
  14. package/composables/useAppVersion.ts +21 -21
  15. package/composables/useEnvLanguage.ts +20 -20
  16. package/lib/utils/sendTask.ts +72 -72
  17. package/minify.js +146 -146
  18. package/package.json +1 -1
  19. package/public/spice-console/application/codec.js +257 -257
  20. package/public/spice-console/lib/rasterEngine.js +907 -907
  21. package/public/spice-console/network/spicechannel.js +369 -369
  22. package/store/main/lib/interfaces.ts +9 -9
  23. package/store/tasks/actions.ts +133 -133
  24. package/store/tasks/getters.ts +25 -25
  25. package/store/tasks/lib/models/interfaces.ts +18 -18
  26. package/store/tasks/mutations.ts +58 -58
  27. package/store/tasks/state.ts +16 -16
@@ -28,6 +28,7 @@
28
28
  <input
29
29
  :id="`${props.testId}-${item.id}`"
30
30
  v-model="item.show"
31
+ :data-id="item.testId"
31
32
  :disabled="isLast && item.show"
32
33
  type="checkbox"
33
34
  @change="change($event, key)"
@@ -43,6 +44,7 @@
43
44
  <div class="switch-footer">
44
45
  <button
45
46
  :id="`${props.testId}-select-all-button`"
47
+ :data-id="`${props.testId}-select-all-button`"
46
48
  class="btn btn-sm btn-link switch-button export-link"
47
49
  @click="selectAll"
48
50
  >
@@ -32,4 +32,5 @@ export interface UI_I_ColumnKey {
32
32
  text: string
33
33
  show: boolean
34
34
  id?: number
35
+ testId?: string
35
36
  }
@@ -6,11 +6,13 @@ import {
6
6
  export const constructColumnKey = (
7
7
  key: string,
8
8
  text: string,
9
- show: boolean
9
+ show: boolean,
10
+ testId?: string
10
11
  ): UI_I_ColumnKey => ({
11
12
  key,
12
13
  text,
13
14
  show,
15
+ testId,
14
16
  })
15
17
 
16
18
  export const constructHeadItem = (