bfg-common 1.1.21 → 1.1.22

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 (59) hide show
  1. package/components/atoms/alert/Notification.vue +167 -167
  2. package/components/atoms/autocomplete/Autocomplete.vue +236 -236
  3. package/components/atoms/datepicker/Datepicker.vue +612 -612
  4. package/components/atoms/list/SelectList.vue +62 -62
  5. package/components/atoms/nav/NavBar.vue +116 -116
  6. package/components/atoms/nav/VerticalNavBar.vue +89 -89
  7. package/components/atoms/notificationBar/NotificationBar.vue +174 -174
  8. package/components/atoms/perPage/PerPage.vue +52 -52
  9. package/components/atoms/popup/SimplePopup.vue +90 -90
  10. package/components/atoms/step/VerticalStep.vue +104 -104
  11. package/components/atoms/switch/Switch.vue +107 -107
  12. package/components/atoms/table/dataGrid/DataGrid.vue +1475 -1475
  13. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +204 -204
  14. package/components/atoms/table/dataGrid/DataGridPage.vue +189 -189
  15. package/components/atoms/tabs/Tabs.vue +189 -189
  16. package/components/atoms/tooltip/Signpost.vue +224 -224
  17. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  18. package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
  19. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
  20. package/components/common/browse/Browse.vue +182 -182
  21. package/components/common/browse/blocks/Title.vue +66 -66
  22. package/components/common/diagramMain/adapter/AdapterItem.vue +227 -227
  23. package/components/common/diagramMain/adapter/AdapterItems.vue +57 -57
  24. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
  25. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
  26. package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
  27. package/components/common/diagramMain/network/Contents.vue +238 -238
  28. package/components/common/feedback/Buttons.vue +232 -232
  29. package/components/common/feedback/Message.vue +468 -468
  30. package/components/common/feedback/VisitPortal.vue +54 -54
  31. package/components/common/help/navbar/left/Left.vue +139 -139
  32. package/components/common/help/navbar/left/utils/constructAccordion.ts +27 -27
  33. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +359 -359
  34. package/components/common/modals/Rename.vue +165 -165
  35. package/components/common/perPage/PerPage.vue +51 -51
  36. package/components/common/recursionTree/RecursionTree.vue +201 -201
  37. package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +445 -452
  38. package/components/common/vm/actions/add/select/storage/config/config.ts +154 -154
  39. package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +373 -373
  40. package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +123 -123
  41. package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +54 -54
  42. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +131 -131
  43. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +230 -230
  44. package/models/store/interfaces.ts +37 -37
  45. package/models/store/storage/interfaces.ts +32 -32
  46. package/models/store/types.ts +32 -32
  47. package/modules/fixContentBuild/index.ts +80 -80
  48. package/modules/fixContentBuild/utils/methods.ts +114 -114
  49. package/package.json +1 -1
  50. package/public/spice-console/application/codec.js +257 -257
  51. package/public/spice-console/lib/rasterEngine.js +907 -907
  52. package/public/spice-console/network/spicechannel.js +369 -369
  53. package/public/spice-console-minify/lib/decoder/dixie.min.js +4 -4
  54. package/public/spice-console-minify/lib/jgestures.min.js +24 -24
  55. package/public/spice-console-minify/lib/jquery-2.0.3.min.js +24 -24
  56. package/public/spice-console-minify/lib/jquery-mousewheel.min.js +11 -11
  57. package/public/spice-console-minify/lib/jquery-visibility.min.js +1 -1
  58. package/public/spice-console-minify/lib/lodash.4.0.0.min.js +5 -5
  59. 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 #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,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
+ }