bfg-common 1.0.75 → 1.0.77

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 (63) 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/modal/bySteps/BySteps.vue +234 -234
  6. package/components/atoms/nav/NavBar.vue +116 -116
  7. package/components/atoms/nav/VerticalNavBar.vue +89 -89
  8. package/components/atoms/notificationBar/NotificationBar.vue +174 -174
  9. package/components/atoms/perPage/PerPage.vue +52 -52
  10. package/components/atoms/popup/SimplePopup.vue +90 -90
  11. package/components/atoms/step/VerticalStep.vue +104 -104
  12. package/components/atoms/switch/Switch.vue +107 -107
  13. package/components/atoms/table/dataGrid/DataGrid.vue +180 -80
  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 +8 -2
  17. package/components/atoms/table/dataGrid/utils/constructDataTable.ts +19 -20
  18. package/components/atoms/tabs/Tabs.vue +189 -189
  19. package/components/atoms/tooltip/Signpost.vue +224 -224
  20. package/components/common/accordion/Recursion.vue +6 -2
  21. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  22. package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
  23. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
  24. package/components/common/browse/Browse.vue +182 -182
  25. package/components/common/browse/blocks/Title.vue +66 -66
  26. package/components/common/diagramMain/adapter/AdapterItem.vue +227 -227
  27. package/components/common/diagramMain/adapter/AdapterItems.vue +57 -57
  28. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
  29. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
  30. package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
  31. package/components/common/diagramMain/modals/viewSettings/Info.vue +96 -94
  32. package/components/common/diagramMain/network/Contents.vue +238 -238
  33. package/components/common/feedback/Buttons.vue +232 -232
  34. package/components/common/feedback/Message.vue +468 -468
  35. package/components/common/feedback/VisitPortal.vue +54 -54
  36. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +359 -359
  37. package/components/common/modals/Rename.vue +165 -165
  38. package/components/common/perPage/PerPage.vue +51 -51
  39. package/components/common/recursionTree/RecursionTree.vue +201 -201
  40. package/components/common/select/radio/RadioGroup.vue +50 -13
  41. package/components/common/select/radio/models/interfaces.ts +2 -6
  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/nfs/version/Version.vue +9 -37
  46. package/components/common/wizards/datastore/add/nfs/version/config/versionOptions.ts +4 -4
  47. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +131 -131
  48. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +230 -230
  49. package/components/common/wizards/datastore/add/sharedStorm/version/Version.vue +6 -37
  50. package/components/common/wizards/datastore/add/sharedStorm/version/config/versionOptions.ts +6 -4
  51. package/components/common/wizards/datastore/add/types/Types.vue +6 -66
  52. package/components/common/wizards/datastore/add/types/config/typeOptions.ts +11 -11
  53. package/models/store/storage/interfaces.ts +32 -32
  54. package/package.json +1 -1
  55. package/public/spice-console/application/codec.js +257 -257
  56. package/public/spice-console/lib/rasterEngine.js +907 -907
  57. package/public/spice-console/network/spicechannel.js +369 -369
  58. package/public/spice-console-minify/lib/decoder/dixie.min.js +4 -4
  59. package/public/spice-console-minify/lib/jgestures.min.js +24 -24
  60. package/public/spice-console-minify/lib/jquery-2.0.3.min.js +24 -24
  61. package/public/spice-console-minify/lib/jquery-mousewheel.min.js +11 -11
  62. package/public/spice-console-minify/lib/jquery-visibility.min.js +1 -1
  63. package/public/spice-console-minify/lib/lodash.4.0.0.min.js +5 -5
@@ -1,62 +1,62 @@
1
- <template>
2
- <select
3
- :id="`${props.testId}-select`"
4
- v-model="selectedItem"
5
- size="15"
6
- class="list"
7
- >
8
- <option
9
- v-for="(item, key) in props.items"
10
- :key="key"
11
- :disabled="item.disabled"
12
- class="item"
13
- :value="item.value"
14
- >
15
- <slot :name="`item${key}`">
16
- {{ item.text }}
17
- </slot>
18
- </option>
19
- </select>
20
- </template>
21
-
22
- <script setup lang="ts">
23
- import { UI_I_OptionItem } from '~/components/atoms/models/interfaces'
24
-
25
- const props = withDefaults(
26
- defineProps<{
27
- testId?: string
28
- items: UI_I_OptionItem[]
29
- modelValue: string
30
- }>(),
31
- { testId: 'ui-select-list' }
32
- )
33
- const emits = defineEmits<{
34
- (event: 'update:model-value', value: string): void
35
- }>()
36
-
37
- const selectedItem = computed<string>({
38
- get() {
39
- return props.modelValue
40
- },
41
- set(newValue) {
42
- emits('update:model-value', newValue)
43
- },
44
- })
45
- </script>
46
-
47
- <style scoped lang="scss">
48
- .list {
49
- outline: none;
50
-
51
- .item {
52
- padding: 3px 6px;
53
- color: #000;
54
-
55
- &:disabled {
56
- color: #565656;
57
- cursor: not-allowed;
58
- opacity: 0.4;
59
- }
60
- }
61
- }
62
- </style>
1
+ <template>
2
+ <select
3
+ :id="`${props.testId}-select`"
4
+ v-model="selectedItem"
5
+ size="15"
6
+ class="list"
7
+ >
8
+ <option
9
+ v-for="(item, key) in props.items"
10
+ :key="key"
11
+ :disabled="item.disabled"
12
+ class="item"
13
+ :value="item.value"
14
+ >
15
+ <slot :name="`item${key}`">
16
+ {{ item.text }}
17
+ </slot>
18
+ </option>
19
+ </select>
20
+ </template>
21
+
22
+ <script setup lang="ts">
23
+ import { UI_I_OptionItem } from '~/components/atoms/models/interfaces'
24
+
25
+ const props = withDefaults(
26
+ defineProps<{
27
+ testId?: string
28
+ items: UI_I_OptionItem[]
29
+ modelValue: string
30
+ }>(),
31
+ { testId: 'ui-select-list' }
32
+ )
33
+ const emits = defineEmits<{
34
+ (event: 'update:model-value', value: string): void
35
+ }>()
36
+
37
+ const selectedItem = computed<string>({
38
+ get() {
39
+ return props.modelValue
40
+ },
41
+ set(newValue) {
42
+ emits('update:model-value', newValue)
43
+ },
44
+ })
45
+ </script>
46
+
47
+ <style scoped lang="scss">
48
+ .list {
49
+ outline: none;
50
+
51
+ .item {
52
+ padding: 3px 6px;
53
+ color: #000;
54
+
55
+ &:disabled {
56
+ color: #565656;
57
+ cursor: not-allowed;
58
+ opacity: 0.4;
59
+ }
60
+ }
61
+ }
62
+ </style>
@@ -1,234 +1,234 @@
1
- <template>
2
- <div v-if="props.show" class="modal clr-wizard wizard-xl">
3
- <div class="modal-dialog modal-xl relative">
4
- <div class="modal-content-wrapper">
5
- <nav class="modal-nav clr-wizard-stepnav-wrapper">
6
- <h1 class="clr-wizard-title">
7
- {{ props.title }}
8
- </h1>
9
- <atoms-step-vertical-step
10
- :test-id="props.testId"
11
- :items="props.stepItems"
12
- :step-position="props.stepPosition"
13
- @change="changeStep"
14
- />
15
- </nav>
16
- <div class="modal-content">
17
- <div class="modal-header--accessible">
18
- <div class="modal-title-wrapper">
19
- <h2 class="modal-title">
20
- <span class="modal-title-text">{{ heading }}</span>
21
- </h2>
22
- </div>
23
- <button
24
- :id="`${props.testId}-close-icon`"
25
- class="close"
26
- @click="hide"
27
- >
28
- <atoms-the-icon class="close-icon" name="close" />
29
- </button>
30
- </div>
31
- <div class="modal-body">
32
- <slot name="modalBody" />
33
- </div>
34
- <div class="modal-footer">
35
- <slot name="modalFooter">
36
- <button
37
- :id="`${props.testId}-cancel-button`"
38
- class="btn btn-link"
39
- @click="hide"
40
- >
41
- {{ localization.cancel }}
42
- </button>
43
- <button
44
- v-show="props.stepPosition > 0"
45
- :id="`${props.testId}-back-button`"
46
- class="btn btn-outline"
47
- @click="back"
48
- >
49
- {{ localization.back }}
50
- </button>
51
- <button
52
- v-if="props.stepPosition === props.stepItems.length - 1"
53
- :id="`${props.testId}-finish-button`"
54
- class="btn btn-success"
55
- @click="finish"
56
- >
57
- {{ localization.finish }}
58
- </button>
59
- <button
60
- v-else
61
- :id="`${props.testId}-next-button`"
62
- class="btn btn-primary"
63
- @click="next"
64
- >
65
- {{ localization.next }}
66
- </button>
67
- </slot>
68
- </div>
69
- </div>
70
- </div>
71
-
72
- <div v-show="props.loading" class="loader">
73
- <i class="fa clr-tree-node-caret-icon spinner spinner" />
74
- </div>
75
- </div>
76
- <div class="modal-backdrop" />
77
- </div>
78
- </template>
79
-
80
- <script setup lang="ts">
81
- import { UI_I_VerticalStepItem } from '~/components/atoms/models/interfaces'
82
-
83
- const props = withDefaults(
84
- defineProps<{
85
- testId?: string
86
- show: boolean
87
- title: string
88
- secondTitle?: string
89
- stepItems: UI_I_VerticalStepItem[]
90
- stepPosition: number
91
- loading?: boolean
92
- }>(),
93
- { testId: 'ui-modal-by-steps' }
94
- )
95
- const emits = defineEmits<{
96
- (event: 'finish'): void
97
- (event: 'next'): void
98
- (event: 'back'): void
99
- (event: 'hide'): void
100
- (event: 'change-step', num: number): void
101
- }>()
102
-
103
- const localization = computed(() => useLocal())
104
-
105
- const heading = ref<string | null>(null)
106
-
107
- const hide = (): void => {
108
- emits('hide')
109
- }
110
- const finish = (): void => {
111
- emits('finish')
112
- }
113
- const next = (): void => {
114
- emits('next')
115
- }
116
- const back = (): void => {
117
- emits('back')
118
- }
119
- const changeStep = (key: number): void => {
120
- emits('change-step', key)
121
- }
122
-
123
- watch(
124
- () => props.stepPosition,
125
- (value) => {
126
- const { stepItems, secondTitle } = props
127
- if (secondTitle) {
128
- heading.value = secondTitle
129
- return
130
- }
131
-
132
- heading.value = stepItems[value].text
133
- },
134
- { immediate: true }
135
- )
136
- </script>
137
-
138
- <style scoped lang="scss">
139
- .modal {
140
- position: fixed;
141
- top: 0;
142
- bottom: 0;
143
- right: 0;
144
- left: 0;
145
- z-index: 1050;
146
- display: flex;
147
- flex-direction: column;
148
- justify-content: center;
149
- align-items: center;
150
- padding: 48px;
151
- overflow-y: auto;
152
-
153
- .modal-nav {
154
- background-color: var(--block-view-bg-color4);
155
- .clr-wizard-title {
156
- color: var(--main-color-mode);
157
- font-size: 22px;
158
- padding: 24px 12px 24px 24px;
159
- //line-height: 1.2rem;
160
- }
161
- }
162
-
163
- .modal-content-wrapper {
164
- position: relative;
165
- -webkit-animation-name: animateTop;
166
- -webkit-animation-duration: 0.4s;
167
- animation-name: animateTop;
168
- animation-duration: 0.4s;
169
- }
170
-
171
- .modal-content {
172
- background-color: var(--modal-bg-color);
173
-
174
- .modal-header--accessible {
175
- display: flex;
176
- justify-content: space-between;
177
- align-items: flex-start;
178
- width: 100%;
179
- padding: 24px 19px 6px 24px;
180
-
181
- .modal-title-text {
182
- color: var(--main-color-mode);
183
- font-size: 22px;
184
- }
185
-
186
- .close-icon {
187
- fill: var(--close-icon);
188
- width: 24px;
189
- height: 24px;
190
- }
191
- }
192
-
193
- .modal-body {
194
- padding: 0 3px;
195
- }
196
-
197
- .modal-footer {
198
- display: flex;
199
- justify-content: flex-end;
200
- padding: 24px;
201
- flex: unset;
202
- min-height: 0;
203
- height: auto;
204
- }
205
- }
206
-
207
- .loader {
208
- position: absolute;
209
- z-index: 1000;
210
- left: 0;
211
- right: 0;
212
- bottom: 0;
213
- top: 0;
214
- display: flex;
215
- align-items: center;
216
- justify-content: center;
217
- background-color: rgba(0, 0, 0, 0.3);
218
-
219
- .spinner {
220
- left: unset;
221
- }
222
- }
223
-
224
- .modal-backdrop {
225
- opacity: 1;
226
- background-color: rgba(0, 0, 0, 0.6);
227
- }
228
- }
229
- h1,
230
- h2 {
231
- // просмотреть если нигде не ломается переместит глобально
232
- line-height: inherit;
233
- }
234
- </style>
1
+ <template>
2
+ <div v-if="props.show" class="modal clr-wizard wizard-xl">
3
+ <div class="modal-dialog modal-xl relative">
4
+ <div class="modal-content-wrapper">
5
+ <nav class="modal-nav clr-wizard-stepnav-wrapper">
6
+ <h1 class="clr-wizard-title">
7
+ {{ props.title }}
8
+ </h1>
9
+ <atoms-step-vertical-step
10
+ :test-id="props.testId"
11
+ :items="props.stepItems"
12
+ :step-position="props.stepPosition"
13
+ @change="changeStep"
14
+ />
15
+ </nav>
16
+ <div class="modal-content">
17
+ <div class="modal-header--accessible">
18
+ <div class="modal-title-wrapper">
19
+ <h2 class="modal-title">
20
+ <span class="modal-title-text">{{ heading }}</span>
21
+ </h2>
22
+ </div>
23
+ <button
24
+ :id="`${props.testId}-close-icon`"
25
+ class="close"
26
+ @click="hide"
27
+ >
28
+ <atoms-the-icon class="close-icon" name="close" />
29
+ </button>
30
+ </div>
31
+ <div class="modal-body">
32
+ <slot name="modalBody" />
33
+ </div>
34
+ <div class="modal-footer">
35
+ <slot name="modalFooter">
36
+ <button
37
+ :id="`${props.testId}-cancel-button`"
38
+ class="btn btn-link"
39
+ @click="hide"
40
+ >
41
+ {{ localization.cancel }}
42
+ </button>
43
+ <button
44
+ v-show="props.stepPosition > 0"
45
+ :id="`${props.testId}-back-button`"
46
+ class="btn btn-outline"
47
+ @click="back"
48
+ >
49
+ {{ localization.back }}
50
+ </button>
51
+ <button
52
+ v-if="props.stepPosition === props.stepItems.length - 1"
53
+ :id="`${props.testId}-finish-button`"
54
+ class="btn btn-success"
55
+ @click="finish"
56
+ >
57
+ {{ localization.finish }}
58
+ </button>
59
+ <button
60
+ v-else
61
+ :id="`${props.testId}-next-button`"
62
+ class="btn btn-primary"
63
+ @click="next"
64
+ >
65
+ {{ localization.next }}
66
+ </button>
67
+ </slot>
68
+ </div>
69
+ </div>
70
+ </div>
71
+
72
+ <div v-show="props.loading" class="loader">
73
+ <i class="fa clr-tree-node-caret-icon spinner spinner" />
74
+ </div>
75
+ </div>
76
+ <div class="modal-backdrop" />
77
+ </div>
78
+ </template>
79
+
80
+ <script setup lang="ts">
81
+ import { UI_I_VerticalStepItem } from '~/components/atoms/models/interfaces'
82
+
83
+ const props = withDefaults(
84
+ defineProps<{
85
+ testId?: string
86
+ show: boolean
87
+ title: string
88
+ secondTitle?: string
89
+ stepItems: UI_I_VerticalStepItem[]
90
+ stepPosition: number
91
+ loading?: boolean
92
+ }>(),
93
+ { testId: 'ui-modal-by-steps' }
94
+ )
95
+ const emits = defineEmits<{
96
+ (event: 'finish'): void
97
+ (event: 'next'): void
98
+ (event: 'back'): void
99
+ (event: 'hide'): void
100
+ (event: 'change-step', num: number): void
101
+ }>()
102
+
103
+ const localization = computed(() => useLocal())
104
+
105
+ const heading = ref<string | null>(null)
106
+
107
+ const hide = (): void => {
108
+ emits('hide')
109
+ }
110
+ const finish = (): void => {
111
+ emits('finish')
112
+ }
113
+ const next = (): void => {
114
+ emits('next')
115
+ }
116
+ const back = (): void => {
117
+ emits('back')
118
+ }
119
+ const changeStep = (key: number): void => {
120
+ emits('change-step', key)
121
+ }
122
+
123
+ watch(
124
+ () => props.stepPosition,
125
+ (value) => {
126
+ const { stepItems, secondTitle } = props
127
+ if (secondTitle) {
128
+ heading.value = secondTitle
129
+ return
130
+ }
131
+
132
+ heading.value = stepItems[value].text
133
+ },
134
+ { immediate: true }
135
+ )
136
+ </script>
137
+
138
+ <style scoped lang="scss">
139
+ .modal {
140
+ position: fixed;
141
+ top: 0;
142
+ bottom: 0;
143
+ right: 0;
144
+ left: 0;
145
+ z-index: 1050;
146
+ display: flex;
147
+ flex-direction: column;
148
+ justify-content: center;
149
+ align-items: center;
150
+ padding: 48px;
151
+ overflow-y: auto;
152
+
153
+ .modal-nav {
154
+ background-color: var(--block-view-bg-color4);
155
+ .clr-wizard-title {
156
+ color: var(--main-color-mode);
157
+ font-size: 22px;
158
+ padding: 24px 12px 24px 24px;
159
+ //line-height: 1.2rem;
160
+ }
161
+ }
162
+
163
+ .modal-content-wrapper {
164
+ position: relative;
165
+ -webkit-animation-name: animateTop;
166
+ -webkit-animation-duration: 0.4s;
167
+ animation-name: animateTop;
168
+ animation-duration: 0.4s;
169
+ }
170
+
171
+ .modal-content {
172
+ background-color: var(--modal-bg-color);
173
+
174
+ .modal-header--accessible {
175
+ display: flex;
176
+ justify-content: space-between;
177
+ align-items: flex-start;
178
+ width: 100%;
179
+ padding: 24px 19px 6px 24px;
180
+
181
+ .modal-title-text {
182
+ color: var(--main-color-mode);
183
+ font-size: 22px;
184
+ }
185
+
186
+ .close-icon {
187
+ fill: var(--close-icon);
188
+ width: 24px;
189
+ height: 24px;
190
+ }
191
+ }
192
+
193
+ .modal-body {
194
+ padding: 0 3px;
195
+ }
196
+
197
+ .modal-footer {
198
+ display: flex;
199
+ justify-content: flex-end;
200
+ padding: 24px;
201
+ flex: unset;
202
+ min-height: 0;
203
+ height: auto;
204
+ }
205
+ }
206
+
207
+ .loader {
208
+ position: absolute;
209
+ z-index: 1000;
210
+ left: 0;
211
+ right: 0;
212
+ bottom: 0;
213
+ top: 0;
214
+ display: flex;
215
+ align-items: center;
216
+ justify-content: center;
217
+ background-color: rgba(0, 0, 0, 0.3);
218
+
219
+ .spinner {
220
+ left: unset;
221
+ }
222
+ }
223
+
224
+ .modal-backdrop {
225
+ opacity: 1;
226
+ background-color: rgba(0, 0, 0, 0.6);
227
+ }
228
+ }
229
+ h1,
230
+ h2 {
231
+ // просмотреть если нигде не ломается переместит глобально
232
+ line-height: inherit;
233
+ }
234
+ </style>