bfg-common 1.3.424 → 1.3.425

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.
@@ -1,15 +1,15 @@
1
- <template>
2
- <div class="ready-complete">
3
- <atoms-table-info :items="props.readyCompleteTableInfo" />
4
- </div>
5
- </template>
6
-
7
- <script lang="ts" setup>
8
- import type { UI_I_TableInfoItem } from '~/components/atoms/table/info/lib/models/interfaces'
9
-
10
- const props = defineProps<{
11
- readyCompleteTableInfo: UI_I_TableInfoItem[]
12
- }>()
13
- </script>
14
-
15
- <style lang="scss" scoped></style>
1
+ <template>
2
+ <div>
3
+ <atoms-table-info :items="props.data" />
4
+ </div>
5
+ </template>
6
+
7
+ <script lang="ts" setup>
8
+ import type { UI_I_TableInfoItem } from '~/components/atoms/table/info/lib/models/interfaces'
9
+
10
+ const props = defineProps<{
11
+ data: UI_I_TableInfoItem[]
12
+ }>()
13
+ </script>
14
+
15
+ <style lang="scss" scoped></style>
@@ -104,9 +104,9 @@
104
104
  @get-networks-table="emits('get-networks-table', $event)"
105
105
  @get-pci-devices="emits('get-pci-devices')"
106
106
  />
107
- <common-vm-actions-common-ready-to-complete
107
+ <common-ready-to-complete
108
108
  v-if="selectedStep.id === 9"
109
- :ready-complete-table-info="props.readyCompleteTableInfo"
109
+ :data="props.readyCompleteTableInfo"
110
110
  />
111
111
  <span v-if="selectedStep.id > 5" class="vm-hardware-version">{{
112
112
  compatibilityInfo
@@ -77,9 +77,9 @@
77
77
  @get-networks-table="emits('get-networks-table', $event)"
78
78
  @get-pci-devices="emits('get-pci-devices')"
79
79
  />
80
- <common-vm-actions-common-ready-to-complete
80
+ <common-ready-to-complete
81
81
  v-show="selectedStep.id === 4"
82
- :ready-complete-table-info="props.readyCompleteTableInfo"
82
+ :data="props.readyCompleteTableInfo"
83
83
  />
84
84
  </div>
85
85
  </template>
@@ -83,9 +83,9 @@
83
83
  @get-pci-devices="emits('get-pci-devices')"
84
84
  @next="onNext(true)"
85
85
  />
86
- <common-vm-actions-common-ready-to-complete
86
+ <common-ready-to-complete
87
87
  v-if="stepPosition === 4"
88
- :ready-complete-table-info="props.readyCompleteTableInfo"
88
+ :data="props.readyCompleteTableInfo"
89
89
  />
90
90
  </div>
91
91
  </template>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.424",
4
+ "version": "1.3.425",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -1,15 +0,0 @@
1
- <template>
2
- <div>
3
- <atoms-table-info :items="props.readyCompleteTableInfo" />
4
- </div>
5
- </template>
6
-
7
- <script lang="ts" setup>
8
- import { UI_I_TableInfoItem } from '~/components/atoms/table/info/lib/models/interfaces'
9
-
10
- const props = defineProps<{
11
- readyCompleteTableInfo: UI_I_TableInfoItem[]
12
- }>()
13
- </script>
14
-
15
- <style lang="scss" scoped></style>