bfg-common 1.4.197 → 1.4.199

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 (23) hide show
  1. package/assets/localization/local_be.json +4 -1
  2. package/assets/localization/local_en.json +4 -1
  3. package/assets/localization/local_hy.json +4 -1
  4. package/assets/localization/local_kk.json +4 -1
  5. package/assets/localization/local_ru.json +4 -1
  6. package/assets/localization/local_zh.json +4 -1
  7. package/components/atoms/DiagramIcon.vue +29 -0
  8. package/components/common/diagramMain/adapter/AdapterItem.vue +17 -4
  9. package/components/common/diagramMain/lib/models/interfaces.ts +24 -1
  10. package/components/common/diagramMain/lib/models/types.ts +7 -2
  11. package/components/common/diagramMain/lib/utils/utils.ts +331 -278
  12. package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +1 -1
  13. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +1 -1
  14. package/components/common/wizards/network/add/Add.vue +18 -7
  15. package/components/common/wizards/network/add/lib/config/steps.ts +464 -464
  16. package/components/common/wizards/network/add/modals/SelectNetwork.vue +1 -1
  17. package/components/common/wizards/network/add/modals/SelectStandardSwitch.vue +1 -1
  18. package/components/common/wizards/network/add/modals/SelectSwitch.vue +1 -1
  19. package/components/common/wizards/network/add/steps/ConnectionSettings.vue +1 -1
  20. package/components/common/wizards/network/add/steps/PortProperties.vue +1 -1
  21. package/package.json +1 -1
  22. /package/components/common/wizards/network/add/lib/config/{index.ts → config.ts} +0 -0
  23. /package/components/common/wizards/network/add/lib/utils/{index.ts → utils.ts} +0 -0
@@ -67,7 +67,7 @@ import type {
67
67
  UI_I_NetworkForAdding,
68
68
  UI_I_SelectedNetwork,
69
69
  } from '~/components/common/wizards/network/add/lib/models/interfaces'
70
- import { selectStandardSwitchTableHeadFunc } from '~/components/common/wizards/network/add/lib/config'
70
+ import { selectStandardSwitchTableHeadFunc } from '~/components/common/wizards/network/add/lib/config/config'
71
71
 
72
72
  const props = withDefaults(
73
73
  defineProps<{
@@ -51,7 +51,7 @@ import type {
51
51
  UI_I_SelectedSwitch,
52
52
  UI_I_BodyItems,
53
53
  } from '~/components/common/wizards/network/add/lib/models/interfaces'
54
- import { selectStandardSwitchTableHeadFunc } from '~/components/common/wizards/network/add/lib/config'
54
+ import { selectStandardSwitchTableHeadFunc } from '~/components/common/wizards/network/add/lib/config/config'
55
55
 
56
56
  interface I_SelectSwitchModalProps {
57
57
  show: boolean
@@ -51,7 +51,7 @@ import type {
51
51
  UI_I_SelectedSwitch,
52
52
  UI_I_BodyItems,
53
53
  } from '~/components/common/wizards/network/add/lib/models/interfaces'
54
- import { selectSwitchTableHeadFunc } from '~/components/common/wizards/network/add/lib/config'
54
+ import { selectSwitchTableHeadFunc } from '~/components/common/wizards/network/add/lib/config/config'
55
55
 
56
56
  interface I_SelectSwitchModalProps {
57
57
  show: boolean
@@ -93,7 +93,7 @@ import type {
93
93
  UI_I_Localization,
94
94
  } from '~/lib/models/interfaces'
95
95
  import type { UI_I_ConnectionSettings } from '~/components/common/wizards/network/add/lib/models/interfaces'
96
- import { vlanIdSelectData } from '~/components/common/wizards/network/add/lib/config'
96
+ import { vlanIdSelectData } from '~/components/common/wizards/network/add/lib/config/config'
97
97
  import type { UI_I_ErrorFields } from '~/components/atoms/wizard/lib/models/interfaces'
98
98
  import type Wizard from '~/components/atoms/wizard/lib/utils/utils'
99
99
  import {
@@ -226,7 +226,7 @@ import {
226
226
  servicesInitial,
227
227
  vlanIdSelectData,
228
228
  portPropertiesEnabledServicesFunc,
229
- } from '~/components/common/wizards/network/add/lib/config'
229
+ } from '~/components/common/wizards/network/add/lib/config/config'
230
230
  import type {
231
231
  UI_I_PortProperties,
232
232
  UI_I_TCPStack,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.197",
4
+ "version": "1.4.199",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",