bfg-common 1.5.677 → 1.5.679
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/common/layout/bottomPanel/BottomPanel.vue +68 -84
- package/components/common/layout/bottomPanel/New.vue +227 -243
- package/components/common/layout/bottomPanel/Old.vue +144 -160
- package/components/common/layout/bottomPanel/recentTasks/lib/models/interfaces.ts +14 -14
- package/package.json +1 -1
- package/components/common/layout/bottomPanel/alarms/Alarms.vue +0 -76
- package/components/common/layout/bottomPanel/alarms/lib/models/interfaces.ts +0 -23
- package/components/common/layout/bottomPanel/alarms/new/New.vue +0 -212
- package/components/common/layout/bottomPanel/alarms/new/lib/config/config.ts +0 -193
- package/components/common/layout/bottomPanel/alarms/new/lib/models/enums.ts +0 -10
- package/components/common/layout/bottomPanel/alarms/new/lib/models/interfaces.ts +0 -12
- package/components/common/layout/bottomPanel/alarms/old/Old.vue +0 -191
- package/components/common/layout/bottomPanel/alarms/old/lib/config/alarmTables.ts +0 -89
- package/components/common/layout/bottomPanel/alarms/old/lib/config/tableKeys.ts +0 -11
- package/components/common/layout/bottomPanel/alarms/old/lib/models/types.ts +0 -8
|
@@ -1,84 +1,68 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<component
|
|
3
|
-
:is="currentComponent"
|
|
4
|
-
v-model:selected-tab="activeTabModel"
|
|
5
|
-
v-model:status-filter="statusFilter"
|
|
6
|
-
:panel-collapsed-model="panelCollapsedModel"
|
|
7
|
-
:tab-list="props.tabList"
|
|
8
|
-
:data-table-recent-tasks="props.dataTableRecentTasks"
|
|
9
|
-
:total-items-recent-tasks="props.totalItemsRecentTasks"
|
|
10
|
-
:total-pages-recent-tasks="props.totalPagesRecentTasks"
|
|
11
|
-
:pagination-recent-tasks="props.paginationRecentTasks"
|
|
12
|
-
:loading-recent-tasks="props.loadingRecentTasks"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
@
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
import type {
|
|
26
|
-
import type {
|
|
27
|
-
import type {
|
|
28
|
-
import type {
|
|
29
|
-
import type {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
|
|
70
|
-
|
|
71
|
-
const currentComponent = computed(() =>
|
|
72
|
-
isNewView.value
|
|
73
|
-
? defineAsyncComponent(() => import('./New.vue'))
|
|
74
|
-
: defineAsyncComponent(() => import('./Old.vue'))
|
|
75
|
-
)
|
|
76
|
-
|
|
77
|
-
const onCollapseBottomPanel = (): void => {
|
|
78
|
-
panelCollapsedModel.value = !panelCollapsedModel.value
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
const statusFilter = ref<UI_T_SelectedStatus>(-1)
|
|
82
|
-
</script>
|
|
83
|
-
|
|
84
|
-
<style scoped lang="scss"></style>
|
|
1
|
+
<template>
|
|
2
|
+
<component
|
|
3
|
+
:is="currentComponent"
|
|
4
|
+
v-model:selected-tab="activeTabModel"
|
|
5
|
+
v-model:status-filter="statusFilter"
|
|
6
|
+
:panel-collapsed-model="panelCollapsedModel"
|
|
7
|
+
:tab-list="props.tabList"
|
|
8
|
+
:data-table-recent-tasks="props.dataTableRecentTasks"
|
|
9
|
+
:total-items-recent-tasks="props.totalItemsRecentTasks"
|
|
10
|
+
:total-pages-recent-tasks="props.totalPagesRecentTasks"
|
|
11
|
+
:pagination-recent-tasks="props.paginationRecentTasks"
|
|
12
|
+
:loading-recent-tasks="props.loadingRecentTasks"
|
|
13
|
+
@collapse-panel="onCollapseBottomPanel"
|
|
14
|
+
@sort-recent-task="emits('sort-recent-task', $event)"
|
|
15
|
+
@pagination-recent-task="emits('pagination-recent-task', $event)"
|
|
16
|
+
>
|
|
17
|
+
<template #alarms>
|
|
18
|
+
<slot name="alarms" />
|
|
19
|
+
</template>
|
|
20
|
+
</component>
|
|
21
|
+
</template>
|
|
22
|
+
|
|
23
|
+
<script setup lang="ts">
|
|
24
|
+
import type { UI_I_CollapseNavItem } from '~/components/atoms/collapse/lib/models/interfaces'
|
|
25
|
+
import type { UI_I_RecentTaskItem } from '~/lib/models/store/tasks/interfaces'
|
|
26
|
+
import type { UI_T_NodeType } from '~/components/common/pages/home/lib/models/types'
|
|
27
|
+
import type { UI_I_Pagination } from '~/lib/models/table/interfaces'
|
|
28
|
+
import type { UI_T_BottomPanelTabType } from '~/components/common/layout/bottomPanel/lib/models/types'
|
|
29
|
+
import type { UI_T_SelectedStatus } from '~/components/common/layout/bottomPanel/recentTasks/old/lib/models/types'
|
|
30
|
+
|
|
31
|
+
const panelCollapsedModel = defineModel<boolean>('panelCollapsed', {
|
|
32
|
+
required: true,
|
|
33
|
+
})
|
|
34
|
+
const activeTabModel = defineModel<UI_T_BottomPanelTabType>('selectedTab', {
|
|
35
|
+
required: true,
|
|
36
|
+
})
|
|
37
|
+
const props = defineProps<{
|
|
38
|
+
tabList: UI_I_CollapseNavItem[]
|
|
39
|
+
dataTableRecentTasks: UI_I_RecentTaskItem<UI_T_NodeType>[]
|
|
40
|
+
totalItemsRecentTasks: number
|
|
41
|
+
totalPagesRecentTasks: number
|
|
42
|
+
paginationRecentTasks: UI_I_Pagination
|
|
43
|
+
loadingRecentTasks: boolean
|
|
44
|
+
}>()
|
|
45
|
+
|
|
46
|
+
const emits = defineEmits<{
|
|
47
|
+
(event: 'sort-recent-task', value: string): void
|
|
48
|
+
(event: 'pagination-recent-task', value: UI_I_Pagination | null): void
|
|
49
|
+
}>()
|
|
50
|
+
|
|
51
|
+
const { $store }: any = useNuxtApp()
|
|
52
|
+
|
|
53
|
+
const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
|
|
54
|
+
|
|
55
|
+
const currentComponent = computed(() =>
|
|
56
|
+
isNewView.value
|
|
57
|
+
? defineAsyncComponent(() => import('./New.vue'))
|
|
58
|
+
: defineAsyncComponent(() => import('./Old.vue'))
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
const onCollapseBottomPanel = (): void => {
|
|
62
|
+
panelCollapsedModel.value = !panelCollapsedModel.value
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const statusFilter = ref<UI_T_SelectedStatus>(-1)
|
|
66
|
+
</script>
|
|
67
|
+
|
|
68
|
+
<style scoped lang="scss"></style>
|
|
@@ -1,243 +1,227 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
:class="[
|
|
4
|
-
'bottom-panel flex flex-col h-full',
|
|
5
|
-
{ collapsed: props.panelCollapsedModel },
|
|
6
|
-
]"
|
|
7
|
-
>
|
|
8
|
-
<div class="bottom-panel__tab-list flex">
|
|
9
|
-
<div class="bottom-panel__collapse relative">
|
|
10
|
-
<button
|
|
11
|
-
id="bottom-panel-collapse"
|
|
12
|
-
data-id="bottom-panel-toggle-button"
|
|
13
|
-
class="btn-collapse flex items-center"
|
|
14
|
-
@click="emits('collapse-panel')"
|
|
15
|
-
>
|
|
16
|
-
<ui-icon class="collapse-icon" name="arrow" />
|
|
17
|
-
</button>
|
|
18
|
-
</div>
|
|
19
|
-
<ui-tabs
|
|
20
|
-
v-model="activeTabModel"
|
|
21
|
-
:tabs="tabListLocal"
|
|
22
|
-
test-id="bottom-panel-tab-list"
|
|
23
|
-
type="underline"
|
|
24
|
-
class="bottom-panel__tab"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
>
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
:
|
|
59
|
-
:
|
|
60
|
-
:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
/>
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
import type {
|
|
79
|
-
import type {
|
|
80
|
-
import
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
(
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
--bottom-pannel-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
&
|
|
169
|
-
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
.
|
|
179
|
-
:
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
height: 24px;
|
|
229
|
-
min-width: 80px;
|
|
230
|
-
padding: 4px 4px 4px 8px;
|
|
231
|
-
border-radius: 6px;
|
|
232
|
-
}
|
|
233
|
-
:deep(.ui-popup-window) {
|
|
234
|
-
border-radius: 6px;
|
|
235
|
-
width: unset !important;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
:deep(.table-container.default-layout) {
|
|
241
|
-
border-radius: 0;
|
|
242
|
-
}
|
|
243
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
:class="[
|
|
4
|
+
'bottom-panel flex flex-col h-full',
|
|
5
|
+
{ collapsed: props.panelCollapsedModel },
|
|
6
|
+
]"
|
|
7
|
+
>
|
|
8
|
+
<div class="bottom-panel__tab-list flex">
|
|
9
|
+
<div class="bottom-panel__collapse relative">
|
|
10
|
+
<button
|
|
11
|
+
id="bottom-panel-collapse"
|
|
12
|
+
data-id="bottom-panel-toggle-button"
|
|
13
|
+
class="btn-collapse flex items-center"
|
|
14
|
+
@click="emits('collapse-panel')"
|
|
15
|
+
>
|
|
16
|
+
<ui-icon class="collapse-icon" name="arrow" />
|
|
17
|
+
</button>
|
|
18
|
+
</div>
|
|
19
|
+
<ui-tabs
|
|
20
|
+
v-model="activeTabModel"
|
|
21
|
+
:tabs="tabListLocal"
|
|
22
|
+
test-id="bottom-panel-tab-list"
|
|
23
|
+
type="underline"
|
|
24
|
+
class="bottom-panel__tab"
|
|
25
|
+
/>
|
|
26
|
+
|
|
27
|
+
<div
|
|
28
|
+
v-show="isShowRecentTasksActions"
|
|
29
|
+
class="actions flex items-center gap-4 pr-4"
|
|
30
|
+
>
|
|
31
|
+
<ui-select
|
|
32
|
+
v-model="statusFilter"
|
|
33
|
+
:items="statusFilterItems"
|
|
34
|
+
test-id="status-filter"
|
|
35
|
+
class="status-filter-select"
|
|
36
|
+
/>
|
|
37
|
+
<ui-button
|
|
38
|
+
test-id="more-tasks-button"
|
|
39
|
+
variant="primary"
|
|
40
|
+
type="text"
|
|
41
|
+
class="more-tasks-button"
|
|
42
|
+
is-without-sizes
|
|
43
|
+
@click="onNavigateToTasksPage"
|
|
44
|
+
>
|
|
45
|
+
{{ localization.tasks.moreTasks }}
|
|
46
|
+
</ui-button>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
<div
|
|
50
|
+
v-show="!props.panelCollapsedModel"
|
|
51
|
+
class="bottom-panel__table-wrapper overflow-hidden"
|
|
52
|
+
>
|
|
53
|
+
<common-layout-bottom-panel-recent-tasks
|
|
54
|
+
v-show="activeTabModel === 'recentTask'"
|
|
55
|
+
v-model:status-filter="statusFilter"
|
|
56
|
+
:data-table="props.dataTableRecentTasks"
|
|
57
|
+
:total-items="props.totalItemsRecentTasks"
|
|
58
|
+
:total-pages="props.totalPagesRecentTasks"
|
|
59
|
+
:pagination="props.paginationRecentTasks"
|
|
60
|
+
:loading="props.loadingRecentTasks"
|
|
61
|
+
@sort="emits('sort-recent-task', $event)"
|
|
62
|
+
@pagination="emits('pagination-recent-task', $event)"
|
|
63
|
+
/>
|
|
64
|
+
|
|
65
|
+
<slot name="alarms" />
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
</template>
|
|
69
|
+
|
|
70
|
+
<script setup lang="ts">
|
|
71
|
+
import type { UI_I_TabItem } from '~/node_modules/bfg-uikit/components/ui/tabs/models/interfaces'
|
|
72
|
+
import type { UI_I_Dropdown } from '~/node_modules/bfg-uikit/components/ui/dropdown/models/interfaces'
|
|
73
|
+
import type { UI_I_CollapseNavItem } from '~/components/atoms/collapse/lib/models/interfaces'
|
|
74
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
75
|
+
import type { UI_T_BottomPanelTabType } from '~/components/common/layout/bottomPanel/lib/models/types'
|
|
76
|
+
import type { UI_I_RecentTaskItem } from '~/lib/models/store/tasks/interfaces'
|
|
77
|
+
import type { UI_I_Pagination } from '~/lib/models/table/interfaces'
|
|
78
|
+
import type { UI_T_NodeType } from '~/components/common/pages/home/lib/models/types'
|
|
79
|
+
import type { UI_T_SelectedStatus } from '~/components/common/layout/bottomPanel/recentTasks/old/lib/models/types'
|
|
80
|
+
import { statusFilterItemsFunc } from '~/components/common/layout/bottomPanel/lib/config/statusFilter'
|
|
81
|
+
|
|
82
|
+
const activeTabModel = defineModel<UI_T_BottomPanelTabType>('selectedTab', {
|
|
83
|
+
required: true,
|
|
84
|
+
})
|
|
85
|
+
const statusFilter = defineModel<UI_T_SelectedStatus>('statusFilter', {
|
|
86
|
+
required: true,
|
|
87
|
+
})
|
|
88
|
+
|
|
89
|
+
const props = defineProps<{
|
|
90
|
+
panelCollapsedModel: boolean
|
|
91
|
+
tabList: UI_I_CollapseNavItem[]
|
|
92
|
+
dataTableRecentTasks: UI_I_RecentTaskItem<UI_T_NodeType>[]
|
|
93
|
+
totalItemsRecentTasks: number
|
|
94
|
+
totalPagesRecentTasks: number
|
|
95
|
+
paginationRecentTasks: UI_I_Pagination
|
|
96
|
+
loadingRecentTasks: boolean
|
|
97
|
+
}>()
|
|
98
|
+
|
|
99
|
+
const emits = defineEmits<{
|
|
100
|
+
(event: 'collapse-panel'): void
|
|
101
|
+
(event: 'sort-recent-task', value: string): void
|
|
102
|
+
(event: 'pagination-recent-task', value: UI_I_Pagination | null): void
|
|
103
|
+
}>()
|
|
104
|
+
|
|
105
|
+
const tabListLocal = computed<UI_I_TabItem[]>(() =>
|
|
106
|
+
props.tabList.map(({ value, text: name, testId, development }) => ({
|
|
107
|
+
name,
|
|
108
|
+
development,
|
|
109
|
+
value: value + '',
|
|
110
|
+
testId: testId + '',
|
|
111
|
+
}))
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
115
|
+
const statusFilterItems = ref<UI_I_Dropdown[]>(
|
|
116
|
+
statusFilterItemsFunc(localization.value)
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
const onNavigateToTasksPage = (): void => {
|
|
120
|
+
const router = useRouter()
|
|
121
|
+
router.push('/tasks')
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
const isShowRecentTasksActions = computed<boolean>(
|
|
125
|
+
() => activeTabModel.value === 'recentTask' && !props.panelCollapsedModel
|
|
126
|
+
)
|
|
127
|
+
</script>
|
|
128
|
+
|
|
129
|
+
<style>
|
|
130
|
+
:root {
|
|
131
|
+
--bottom-pannel-bg-color: #fff;
|
|
132
|
+
--bottom-pannel-border-color: #e9ebed;
|
|
133
|
+
--bottom-pannel-rtask-link-text: #008fd6;
|
|
134
|
+
--bottom-pannel-rtask-link-hover-text: #0081c1;
|
|
135
|
+
--bottom-pannel-divider-color: #e9ebeda3;
|
|
136
|
+
--bottom-pannel-collapse-button-icon: #213444;
|
|
137
|
+
}
|
|
138
|
+
:root.dark-theme {
|
|
139
|
+
--bottom-pannel-bg-color: #213444;
|
|
140
|
+
--bottom-pannel-border-color: #e9ebed1f;
|
|
141
|
+
--bottom-pannel-rtask-link-text: #2ba2de;
|
|
142
|
+
--bottom-pannel-rtask-link-hover-text: #008fd6;
|
|
143
|
+
--bottom-pannel-divider-color: #e9ebed1f;
|
|
144
|
+
--bottom-pannel-collapse-button-icon: #e9eaec;
|
|
145
|
+
}
|
|
146
|
+
</style>
|
|
147
|
+
<style scoped lang="scss">
|
|
148
|
+
@import '~/assets/scss/common/mixins';
|
|
149
|
+
.bottom-panel {
|
|
150
|
+
background-color: var(--bottom-pannel-bg-color);
|
|
151
|
+
|
|
152
|
+
&__tab-list {
|
|
153
|
+
border-bottom: 1px solid var(--bottom-pannel-border-color);
|
|
154
|
+
}
|
|
155
|
+
&__tab {
|
|
156
|
+
align-items: flex-end;
|
|
157
|
+
margin-left: 16px;
|
|
158
|
+
|
|
159
|
+
&.tabs-wrapper.is-link:before {
|
|
160
|
+
display: none;
|
|
161
|
+
}
|
|
162
|
+
.collapsed &.tabs-wrapper.is-link {
|
|
163
|
+
:deep(.tab-item.active.tab-underline) {
|
|
164
|
+
border-bottom: 3px solid transparent;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
&__table-wrapper {
|
|
169
|
+
height: inherit;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.btn-collapse {
|
|
173
|
+
border: 0;
|
|
174
|
+
outline: none;
|
|
175
|
+
background-color: transparent;
|
|
176
|
+
cursor: pointer;
|
|
177
|
+
|
|
178
|
+
.collapse-icon {
|
|
179
|
+
width: 20px;
|
|
180
|
+
height: 20px;
|
|
181
|
+
transform: rotate(180deg);
|
|
182
|
+
color: var(--bottom-pannel-collapse-button-icon);
|
|
183
|
+
|
|
184
|
+
.collapsed & {
|
|
185
|
+
transform: rotate(0deg);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
&__collapse {
|
|
190
|
+
padding: 12px 16px;
|
|
191
|
+
|
|
192
|
+
&:before {
|
|
193
|
+
content: '';
|
|
194
|
+
position: absolute;
|
|
195
|
+
top: 8px;
|
|
196
|
+
right: 0;
|
|
197
|
+
bottom: 8px;
|
|
198
|
+
width: 1px;
|
|
199
|
+
background-color: var(--bottom-pannel-divider-color);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.actions {
|
|
204
|
+
flex: 1;
|
|
205
|
+
justify-content: flex-end;
|
|
206
|
+
|
|
207
|
+
.more-tasks-button {
|
|
208
|
+
width: auto;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
:deep(.ui-select-toggle-button) {
|
|
212
|
+
height: 24px;
|
|
213
|
+
min-width: 80px;
|
|
214
|
+
padding: 4px 4px 4px 8px;
|
|
215
|
+
border-radius: 6px;
|
|
216
|
+
}
|
|
217
|
+
:deep(.ui-popup-window) {
|
|
218
|
+
border-radius: 6px;
|
|
219
|
+
width: unset !important;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
:deep(.table-container.default-layout) {
|
|
225
|
+
border-radius: 0;
|
|
226
|
+
}
|
|
227
|
+
</style>
|