bfg-common 1.0.74 → 1.0.76
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.
- package/components/atoms/alert/Notification.vue +167 -167
- package/components/atoms/autocomplete/Autocomplete.vue +236 -236
- package/components/atoms/datepicker/Datepicker.vue +612 -612
- package/components/atoms/list/SelectList.vue +62 -62
- package/components/atoms/modal/bySteps/BySteps.vue +234 -234
- package/components/atoms/nav/NavBar.vue +116 -116
- package/components/atoms/nav/VerticalNavBar.vue +89 -89
- package/components/atoms/notificationBar/NotificationBar.vue +174 -174
- package/components/atoms/perPage/PerPage.vue +52 -52
- package/components/atoms/popup/SimplePopup.vue +90 -90
- package/components/atoms/step/VerticalStep.vue +104 -104
- package/components/atoms/switch/Switch.vue +107 -107
- package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +204 -204
- package/components/atoms/table/dataGrid/DataGridPage.vue +189 -189
- package/components/atoms/table/dataGrid/DataGridPagination.vue +83 -83
- package/components/atoms/tabs/Tabs.vue +189 -189
- package/components/atoms/tooltip/Signpost.vue +224 -224
- package/components/common/accordion/Recursion.vue +216 -216
- package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
- package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
- package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
- package/components/common/browse/Browse.vue +182 -182
- package/components/common/browse/blocks/Title.vue +66 -66
- package/components/common/diagramMain/adapter/AdapterItem.vue +227 -227
- package/components/common/diagramMain/adapter/AdapterItems.vue +57 -57
- package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
- package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
- package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
- package/components/common/diagramMain/modals/viewSettings/Info.vue +94 -94
- package/components/common/diagramMain/network/Contents.vue +238 -238
- package/components/common/feedback/Buttons.vue +232 -232
- package/components/common/feedback/Message.vue +468 -468
- package/components/common/feedback/VisitPortal.vue +54 -54
- package/components/common/mainNavigationPanel/MainNavigationPanel.vue +359 -359
- package/components/common/modals/Rename.vue +165 -165
- package/components/common/perPage/PerPage.vue +51 -51
- package/components/common/recursionTree/RecursionTree.vue +201 -201
- package/components/common/select/radio/RadioGroup.vue +50 -13
- package/components/common/select/radio/models/interfaces.ts +2 -6
- package/components/common/vm/actions/add/select/name/Name.vue +1 -1
- package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +373 -373
- package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +123 -123
- package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +54 -54
- package/components/common/wizards/datastore/add/nfs/version/Version.vue +9 -37
- package/components/common/wizards/datastore/add/nfs/version/config/versionOptions.ts +4 -4
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +131 -131
- package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +230 -230
- package/components/common/wizards/datastore/add/sharedStorm/version/Version.vue +6 -37
- package/components/common/wizards/datastore/add/sharedStorm/version/config/versionOptions.ts +6 -4
- package/components/common/wizards/datastore/add/types/Types.vue +6 -66
- package/components/common/wizards/datastore/add/types/config/typeOptions.ts +11 -11
- package/models/store/storage/interfaces.ts +32 -32
- package/package.json +1 -1
- package/public/spice-console/application/codec.js +257 -257
- package/public/spice-console/lib/rasterEngine.js +907 -907
- package/public/spice-console/network/spicechannel.js +369 -369
- package/public/spice-console-minify/lib/decoder/dixie.min.js +4 -4
- package/public/spice-console-minify/lib/jgestures.min.js +24 -24
- package/public/spice-console-minify/lib/jquery-2.0.3.min.js +24 -24
- package/public/spice-console-minify/lib/jquery-mousewheel.min.js +11 -11
- package/public/spice-console-minify/lib/jquery-visibility.min.js +1 -1
- 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>
|