bfg-common 1.1.21 → 1.1.23

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 (69) hide show
  1. package/assets/localization/local_be.json +12 -1
  2. package/assets/localization/local_en.json +12 -1
  3. package/assets/localization/local_hy.json +12 -1
  4. package/assets/localization/local_kk.json +12 -1
  5. package/assets/localization/local_ru.json +12 -1
  6. package/assets/localization/local_zh.json +12 -1
  7. package/components/atoms/DiagramIcon.vue +53 -6
  8. package/components/atoms/TheIcon2.vue +14 -27
  9. package/components/atoms/alert/Notification.vue +167 -167
  10. package/components/atoms/autocomplete/Autocomplete.vue +236 -236
  11. package/components/atoms/datepicker/Datepicker.vue +612 -612
  12. package/components/atoms/list/SelectList.vue +62 -62
  13. package/components/atoms/nav/NavBar.vue +116 -116
  14. package/components/atoms/nav/VerticalNavBar.vue +89 -89
  15. package/components/atoms/notificationBar/NotificationBar.vue +174 -174
  16. package/components/atoms/perPage/PerPage.vue +52 -52
  17. package/components/atoms/popup/SimplePopup.vue +90 -90
  18. package/components/atoms/step/VerticalStep.vue +104 -104
  19. package/components/atoms/switch/Switch.vue +107 -107
  20. package/components/atoms/table/dataGrid/DataGrid.vue +2 -3
  21. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +204 -204
  22. package/components/atoms/table/dataGrid/DataGridPage.vue +189 -189
  23. package/components/atoms/tabs/Tabs.vue +189 -189
  24. package/components/atoms/tooltip/Signpost.vue +224 -224
  25. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  26. package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
  27. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
  28. package/components/common/browse/Browse.vue +182 -182
  29. package/components/common/browse/blocks/Title.vue +66 -66
  30. package/components/common/diagramMain/adapter/AdapterItem.vue +227 -227
  31. package/components/common/diagramMain/adapter/AdapterItems.vue +57 -57
  32. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
  33. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
  34. package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
  35. package/components/common/diagramMain/modals/viewSettings/ViewSettings.vue +1 -1
  36. package/components/common/diagramMain/network/Contents.vue +238 -238
  37. package/components/common/feedback/Buttons.vue +232 -232
  38. package/components/common/feedback/Message.vue +468 -468
  39. package/components/common/feedback/VisitPortal.vue +54 -54
  40. package/components/common/help/navbar/left/Left.vue +139 -139
  41. package/components/common/help/navbar/left/utils/constructAccordion.ts +27 -27
  42. package/components/common/help/navbar/right/Right.vue +4 -4
  43. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +359 -359
  44. package/components/common/modals/Rename.vue +165 -165
  45. package/components/common/perPage/PerPage.vue +51 -51
  46. package/components/common/recursionTree/RecursionTree.vue +201 -201
  47. package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +445 -452
  48. package/components/common/vm/actions/add/select/storage/config/config.ts +154 -154
  49. package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +373 -373
  50. package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +123 -123
  51. package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +54 -54
  52. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +131 -131
  53. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +230 -230
  54. package/models/store/interfaces.ts +37 -37
  55. package/models/store/storage/interfaces.ts +32 -32
  56. package/models/store/types.ts +32 -32
  57. package/modules/fixContentBuild/index.ts +80 -80
  58. package/modules/fixContentBuild/utils/methods.ts +114 -114
  59. package/package.json +1 -1
  60. package/public/spice-console/application/codec.js +257 -257
  61. package/public/spice-console/lib/rasterEngine.js +907 -907
  62. package/public/spice-console/network/spicechannel.js +369 -369
  63. package/public/spice-console-minify/lib/decoder/dixie.min.js +4 -4
  64. package/public/spice-console-minify/lib/jgestures.min.js +24 -24
  65. package/public/spice-console-minify/lib/jquery-2.0.3.min.js +24 -24
  66. package/public/spice-console-minify/lib/jquery-mousewheel.min.js +11 -11
  67. package/public/spice-console-minify/lib/jquery-visibility.min.js +1 -1
  68. package/public/spice-console-minify/lib/lodash.4.0.0.min.js +5 -5
  69. package/utils/contentBuild.ts +34 -34
@@ -1,54 +1,54 @@
1
- <template>
2
- <div>
3
- <div class="modal-body">
4
- <div>
5
- {{ localization.useOurExternalIdeasPortal }}
6
- </div>
7
- <a id="portal-link" :href="portalLink" target="_blank">
8
- <button id="visit-ideas-portal-button" class="btn btn-outline wrap">
9
- <span class="text"> {{ localization.visitIdeasPortal }} </span>
10
- <atoms-the-icon2 class="btn-icon" name="pop-out" />
11
- </button>
12
- </a>
13
- </div>
14
- </div>
15
- </template>
16
-
17
- <script setup lang="ts">
18
- import { UI_I_Localization } from '~/models/interfaces'
19
- const localization = computed<UI_I_Localization>(() => useLocal())
20
- const portalLink = ref<string>('#')
21
- </script>
22
-
23
- <style scoped lang="scss">
24
- .modal-body {
25
- padding: 0;
26
- a {
27
- text-decoration: none;
28
-
29
- .btn.btn-outline.wrap {
30
- display: flex;
31
- flex-direction: row;
32
- align-items: center;
33
-
34
- .text {
35
- color: var(--icon-fill-hover-color);
36
- }
37
- & .btn-icon {
38
- width: 16px;
39
- height: 16px;
40
- margin-left: 5px;
41
- fill: var(--icon-fill-hover-color);
42
- }
43
- }
44
- }
45
- }
46
- </style>
47
- <style>
48
- :root {
49
- --icon-fill-hover-color: rgb(0, 121, 184);
50
- }
51
- :root.dark-theme {
52
- --icon-fill-hover-color: rgb(73, 175, 217);
53
- }
54
- </style>
1
+ <template>
2
+ <div>
3
+ <div class="modal-body">
4
+ <div>
5
+ {{ localization.useOurExternalIdeasPortal }}
6
+ </div>
7
+ <a id="portal-link" :href="portalLink" target="_blank">
8
+ <button id="visit-ideas-portal-button" class="btn btn-outline wrap">
9
+ <span class="text"> {{ localization.visitIdeasPortal }} </span>
10
+ <atoms-the-icon2 class="btn-icon" name="pop-out" />
11
+ </button>
12
+ </a>
13
+ </div>
14
+ </div>
15
+ </template>
16
+
17
+ <script setup lang="ts">
18
+ import { UI_I_Localization } from '~/models/interfaces'
19
+ const localization = computed<UI_I_Localization>(() => useLocal())
20
+ const portalLink = ref<string>('#')
21
+ </script>
22
+
23
+ <style scoped lang="scss">
24
+ .modal-body {
25
+ padding: 0;
26
+ a {
27
+ text-decoration: none;
28
+
29
+ .btn.btn-outline.wrap {
30
+ display: flex;
31
+ flex-direction: row;
32
+ align-items: center;
33
+
34
+ .text {
35
+ color: var(--icon-fill-hover-color);
36
+ }
37
+ & .btn-icon {
38
+ width: 16px;
39
+ height: 16px;
40
+ margin-left: 5px;
41
+ fill: var(--icon-fill-hover-color);
42
+ }
43
+ }
44
+ }
45
+ }
46
+ </style>
47
+ <style>
48
+ :root {
49
+ --icon-fill-hover-color: rgb(0, 121, 184);
50
+ }
51
+ :root.dark-theme {
52
+ --icon-fill-hover-color: rgb(73, 175, 217);
53
+ }
54
+ </style>
@@ -1,139 +1,139 @@
1
- <template>
2
- <div class="left-navbar">
3
- <div class="header-content">
4
- <button
5
- class="btn-trigger-collapsed-all"
6
- @click="onToggleAccordionShowType"
7
- >
8
- <atoms-the-icon
9
- :class="[
10
- 'trigger-icon',
11
- {
12
- isOpen: isCollapsed,
13
- },
14
- ]"
15
- name="angle"
16
- />
17
- <span v-if="isCollapsed">{{ localization.collapseAll }}</span>
18
- <span v-else>{{ localization.expandAll }}</span>
19
- </button>
20
- </div>
21
- <common-accordion
22
- :accordion="accordionItems"
23
- :show-type="accordionShowType"
24
- test-id="accordion-left-navbar"
25
- />
26
- </div>
27
- </template>
28
-
29
- <script setup lang="ts">
30
- import type { UI_I_Localization } from '~/models/interfaces'
31
- import type { UI_T_ShowType } from '~/components/common/accordion/models/types'
32
- import type { UI_I_AccordionRecursion } from '~/components/common/accordion/models/interfaces'
33
- import type { UI_I_ContentNavigation } from '~/components/common/help/navbar/left/models/interfaces'
34
- import { constructItems } from '~/components/common/help/navbar/left/utils/constructAccordion'
35
-
36
- const props = defineProps<{
37
- items: UI_I_ContentNavigation[] | null
38
- }>()
39
-
40
- const localization = computed<UI_I_Localization>(() => useLocal())
41
-
42
- const accordionShowType = ref<UI_T_ShowType>('default')
43
- const isCollapsed = computed<boolean>(
44
- () => accordionShowType.value === 'collapse'
45
- )
46
-
47
- const onToggleAccordionShowType = (): void => {
48
- accordionShowType.value =
49
- accordionShowType.value === 'collapse' ? 'expand' : 'collapse'
50
- }
51
-
52
- const accordionItems = ref<UI_I_AccordionRecursion[]>([])
53
-
54
- watch(
55
- () => props.items,
56
- (newValue) => {
57
- if (newValue === null) return
58
-
59
- accordionItems.value = constructItems(newValue)
60
- },
61
- { deep: true, immediate: true }
62
- )
63
- </script>
64
-
65
- <style lang="scss">
66
- .left-navbar {
67
- width: 350px;
68
- overflow: auto;
69
- position: sticky;
70
- top: 0;
71
- border: 0.5px solid #e8e8e8;
72
-
73
- .header-content {
74
- border-bottom: 0.5px solid #e8e8e8;
75
- padding: 11px 16px 11px 5px;
76
- background-color: #fff;
77
- position: sticky;
78
- top: 0;
79
- z-index: 1;
80
-
81
- .btn-trigger-collapsed-all {
82
- display: flex;
83
- align-items: center;
84
- gap: 5px;
85
- cursor: pointer;
86
- background-color: unset;
87
- border: unset;
88
-
89
- .trigger-icon {
90
- width: 16px;
91
- height: 16px;
92
- transform: rotate(180deg);
93
- fill: var(--triger-icon-color);
94
- &.isOpen {
95
- transform: rotate(0deg);
96
- }
97
- }
98
-
99
- span {
100
- color: #0079b8;
101
- font-size: 12px;
102
- font-weight: bold;
103
- }
104
- }
105
- }
106
-
107
- .accordion {
108
- .accordion-item.active {
109
- background-color: #fafafa;
110
- color: unset;
111
- }
112
-
113
- .router-link-exact-active {
114
- & .text {
115
- font-weight: bold !important;
116
- background-color: #e6f4fb !important;
117
- }
118
- }
119
-
120
- .heading-wrap {
121
- flex-direction: row-reverse;
122
- border: unset !important;
123
- margin-bottom: 0 !important;
124
- background-color: unset !important;
125
-
126
- .btn-trigger {
127
- flex: 0;
128
- }
129
- }
130
-
131
- .text {
132
- font-weight: normal !important;
133
- font-size: 14px;
134
- width: 100%;
135
- padding: 6px 6px 6px 0;
136
- }
137
- }
138
- }
139
- </style>
1
+ <template>
2
+ <div class="left-navbar">
3
+ <div class="header-content">
4
+ <button
5
+ class="btn-trigger-collapsed-all"
6
+ @click="onToggleAccordionShowType"
7
+ >
8
+ <atoms-the-icon
9
+ :class="[
10
+ 'trigger-icon',
11
+ {
12
+ isOpen: isCollapsed,
13
+ },
14
+ ]"
15
+ name="angle"
16
+ />
17
+ <span v-if="isCollapsed">{{ localization.collapseAll }}</span>
18
+ <span v-else>{{ localization.expandAll }}</span>
19
+ </button>
20
+ </div>
21
+ <common-accordion
22
+ :accordion="accordionItems"
23
+ :show-type="accordionShowType"
24
+ test-id="accordion-left-navbar"
25
+ />
26
+ </div>
27
+ </template>
28
+
29
+ <script setup lang="ts">
30
+ import type { UI_I_Localization } from '~/models/interfaces'
31
+ import type { UI_T_ShowType } from '~/components/common/accordion/models/types'
32
+ import type { UI_I_AccordionRecursion } from '~/components/common/accordion/models/interfaces'
33
+ import type { UI_I_ContentNavigation } from '~/components/common/help/navbar/left/models/interfaces'
34
+ import { constructItems } from '~/components/common/help/navbar/left/utils/constructAccordion'
35
+
36
+ const props = defineProps<{
37
+ items: UI_I_ContentNavigation[] | null
38
+ }>()
39
+
40
+ const localization = computed<UI_I_Localization>(() => useLocal())
41
+
42
+ const accordionShowType = ref<UI_T_ShowType>('default')
43
+ const isCollapsed = computed<boolean>(
44
+ () => accordionShowType.value === 'collapse'
45
+ )
46
+
47
+ const onToggleAccordionShowType = (): void => {
48
+ accordionShowType.value =
49
+ accordionShowType.value === 'collapse' ? 'expand' : 'collapse'
50
+ }
51
+
52
+ const accordionItems = ref<UI_I_AccordionRecursion[]>([])
53
+
54
+ watch(
55
+ () => props.items,
56
+ (newValue) => {
57
+ if (newValue === null) return
58
+
59
+ accordionItems.value = constructItems(newValue)
60
+ },
61
+ { deep: true, immediate: true }
62
+ )
63
+ </script>
64
+
65
+ <style lang="scss">
66
+ .left-navbar {
67
+ width: 350px;
68
+ overflow: auto;
69
+ position: sticky;
70
+ top: 0;
71
+ border: 0.5px solid var(--global-border-color);
72
+
73
+ .header-content {
74
+ border-bottom: 0.5px solid var(--global-border-color);
75
+ padding: 11px 16px 11px 5px;
76
+ background-color: #fff;
77
+ position: sticky;
78
+ top: 0;
79
+ z-index: 1;
80
+
81
+ .btn-trigger-collapsed-all {
82
+ display: flex;
83
+ align-items: center;
84
+ gap: 5px;
85
+ cursor: pointer;
86
+ background-color: unset;
87
+ border: unset;
88
+
89
+ .trigger-icon {
90
+ width: 16px;
91
+ height: 16px;
92
+ transform: rotate(180deg);
93
+ fill: var(--triger-icon-color);
94
+ &.isOpen {
95
+ transform: rotate(0deg);
96
+ }
97
+ }
98
+
99
+ span {
100
+ color: #0079b8;
101
+ font-size: 12px;
102
+ font-weight: bold;
103
+ }
104
+ }
105
+ }
106
+
107
+ .accordion {
108
+ .accordion-item.active {
109
+ background-color: #fafafa;
110
+ color: unset;
111
+ }
112
+
113
+ .router-link-exact-active {
114
+ & .text {
115
+ font-weight: bold !important;
116
+ background-color: #e6f4fb !important;
117
+ }
118
+ }
119
+
120
+ .heading-wrap {
121
+ flex-direction: row-reverse;
122
+ border: unset !important;
123
+ margin-bottom: 0 !important;
124
+ background-color: unset !important;
125
+
126
+ .btn-trigger {
127
+ flex: 0;
128
+ }
129
+ }
130
+
131
+ .text {
132
+ font-weight: normal !important;
133
+ font-size: 14px;
134
+ width: 100%;
135
+ padding: 6px 6px 6px 0;
136
+ }
137
+ }
138
+ }
139
+ </style>
@@ -1,27 +1,27 @@
1
- import type { UI_I_ContentNavigation } from '~/components/common/help/navbar/left/models/interfaces'
2
- import type { UI_I_AccordionRecursion } from '~/components/common/accordion/models/interfaces'
3
-
4
- export const constructItems = (
5
- items?: UI_I_ContentNavigation[],
6
- parent?: UI_I_ContentNavigation
7
- ): UI_I_AccordionRecursion[] => {
8
- if (!items) return []
9
-
10
- return items
11
- .filter((item) => {
12
- return (
13
- !parent || (item.title !== parent.title && item._path !== parent._path)
14
- )
15
- })
16
- .map((item: UI_I_ContentNavigation): UI_I_AccordionRecursion => {
17
- const children = constructItems(item.children, item)
18
- return {
19
- children,
20
- id: item._path,
21
- path: item._path,
22
- name: item.title,
23
- hasChild: !!children.length,
24
- isOpen: !parent,
25
- }
26
- })
27
- }
1
+ import type { UI_I_ContentNavigation } from '~/components/common/help/navbar/left/models/interfaces'
2
+ import type { UI_I_AccordionRecursion } from '~/components/common/accordion/models/interfaces'
3
+
4
+ export const constructItems = (
5
+ items?: UI_I_ContentNavigation[],
6
+ parent?: UI_I_ContentNavigation
7
+ ): UI_I_AccordionRecursion[] => {
8
+ if (!items) return []
9
+
10
+ return items
11
+ .filter((item) => {
12
+ return (
13
+ !parent || (item.title !== parent.title && item._path !== parent._path)
14
+ )
15
+ })
16
+ .map((item: UI_I_ContentNavigation): UI_I_AccordionRecursion => {
17
+ const children = constructItems(item.children, item)
18
+ return {
19
+ children,
20
+ id: item._path,
21
+ path: item._path,
22
+ name: item.title,
23
+ hasChild: !!children.length,
24
+ isOpen: !parent,
25
+ }
26
+ })
27
+ }
@@ -72,8 +72,8 @@ onMounted(() => {
72
72
  position: sticky;
73
73
  top: 0;
74
74
  height: inherit;
75
- border-left: 0.5px solid #e8e8e8;
76
- border-top: 0.5px solid #e8e8e8;
75
+ border-left: 0.5px solid var(--global-border-color);
76
+ border-top: 0.5px solid var(--global-border-color);
77
77
  max-width: 308px;
78
78
  overflow: hidden;
79
79
 
@@ -99,7 +99,7 @@ onMounted(() => {
99
99
 
100
100
  .title {
101
101
  font-weight: bold;
102
- color: black;
102
+ color: var(--global-font-color);
103
103
  font-size: 16px;
104
104
  }
105
105
 
@@ -124,7 +124,7 @@ onMounted(() => {
124
124
  }
125
125
  .link-item {
126
126
  display: block;
127
- color: #737373;
127
+ color: var(--global-font-color);
128
128
  padding: 6px 12px 6px 18px;
129
129
  font-size: 14px;
130
130
  text-decoration: unset;