bfg-common 1.0.49 → 1.0.51

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