@ouestfrance/sipa-bms-ui 8.16.0 → 8.18.0
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/dist/components/navigation/BmsTabs.vue.d.ts +6 -1
- package/dist/components/navigation/UiTab.vue.d.ts +5 -4
- package/dist/components/navigation/UiTabs.vue.d.ts +21 -0
- package/dist/components/table/BmsTable.vue.d.ts +3 -1
- package/dist/components/table/UiBmsTable.vue.d.ts +1 -1
- package/dist/helpers/tab.helper.d.ts +2 -0
- package/dist/helpers/table.helper.d.ts +1 -0
- package/dist/models/tab.model.d.ts +5 -0
- package/dist/models/table.model.d.ts +2 -1
- package/dist/sipa-bms-ui.css +70 -69
- package/dist/sipa-bms-ui.es.js +380 -294
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +388 -301
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/layout/BmsFloatingWindow.vue +1 -0
- package/src/components/navigation/BmsTabs.stories.js +58 -4
- package/src/components/navigation/BmsTabs.vue +53 -33
- package/src/components/navigation/UiTab.stories.js +5 -5
- package/src/components/navigation/UiTab.vue +15 -20
- package/src/components/navigation/UiTabs.stories.js +34 -0
- package/src/components/navigation/UiTabs.vue +76 -0
- package/src/components/table/BmsTable.stories.js +47 -0
- package/src/components/table/BmsTable.vue +22 -3
- package/src/components/table/UiBmsTable.spec.ts +47 -3
- package/src/components/table/UiBmsTable.stories.js +43 -0
- package/src/components/table/UiBmsTable.vue +51 -91
- package/src/components/table/UiBmsTableRow.vue +18 -3
- package/src/documentation/principles.mdx +73 -7
- package/src/helpers/tab.helper.ts +3 -0
- package/src/helpers/table.helper.ts +19 -0
- package/src/models/tab.model.ts +6 -0
- package/src/models/table.model.ts +1 -0
- package/src/showroom/pages/server-table.vue +1 -4
- package/src/showroom/pages/table.vue +3 -0
|
@@ -2,6 +2,11 @@ import { Tab } from '../../models/tab.model';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
title: string;
|
|
4
4
|
tabs: Tab[];
|
|
5
|
+
initialTabId?: string;
|
|
5
6
|
};
|
|
6
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
|
+
click: (tab: Tab) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
onClick?: ((tab: Tab) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
7
12
|
export default _default;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { Tab } from '../../models/tab.model';
|
|
2
|
-
import { RouteLocation } from 'vue-router';
|
|
3
2
|
type __VLS_Props = {
|
|
4
|
-
|
|
3
|
+
selectedTabId: string | null;
|
|
5
4
|
tab: Tab;
|
|
6
5
|
};
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
8
|
-
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>, {
|
|
7
|
+
router?(_: {
|
|
8
|
+
tab: Tab;
|
|
9
|
+
}): any;
|
|
9
10
|
}>;
|
|
10
11
|
export default _default;
|
|
11
12
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Tab } from '../../models/tab.model';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
title: string;
|
|
4
|
+
tabs: Tab[];
|
|
5
|
+
initialTabId?: string | null;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
|
+
click: (value: any) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
onClick?: ((value: any) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
12
|
+
router?(_: {
|
|
13
|
+
tab: Tab;
|
|
14
|
+
}): any;
|
|
15
|
+
}>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Filter, SavedFilter, Sort, TableHeader } from '../../models';
|
|
1
|
+
import { Filter, SavedFilter, SelectMode, Sort, TableHeader } from '../../models';
|
|
2
2
|
interface UiTableProps {
|
|
3
3
|
disableSearch?: boolean;
|
|
4
4
|
headers: TableHeader[];
|
|
@@ -15,6 +15,7 @@ interface UiTableProps {
|
|
|
15
15
|
defaultSort?: Sort;
|
|
16
16
|
selectable?: boolean;
|
|
17
17
|
selectableDisabled?: boolean;
|
|
18
|
+
selectMode?: SelectMode.DEFAULT | SelectMode.SINGLE;
|
|
18
19
|
}
|
|
19
20
|
type __VLS_Props = UiTableProps;
|
|
20
21
|
declare const __VLS_defaults: {
|
|
@@ -54,6 +55,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
54
55
|
size: number;
|
|
55
56
|
filters: Filter[];
|
|
56
57
|
selectable: boolean;
|
|
58
|
+
selectMode: SelectMode.DEFAULT | SelectMode.SINGLE;
|
|
57
59
|
selectableDisabled: boolean;
|
|
58
60
|
pagination: number[];
|
|
59
61
|
canSaveFilters: boolean;
|
package/dist/sipa-bms-ui.css
CHANGED
|
@@ -1415,7 +1415,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1415
1415
|
position: absolute;
|
|
1416
1416
|
border-radius: 50%;
|
|
1417
1417
|
filter: blur(10px);
|
|
1418
|
-
}.floating-window-wrapper[data-v-
|
|
1418
|
+
}.floating-window-wrapper[data-v-fdb4e567] {
|
|
1419
1419
|
--breakpoint: 900px;
|
|
1420
1420
|
container-name: floating-window;
|
|
1421
1421
|
container-type: inline-size;
|
|
@@ -1429,7 +1429,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1429
1429
|
align-items: center;
|
|
1430
1430
|
pointer-events: none;
|
|
1431
1431
|
}
|
|
1432
|
-
.floating-window-wrapper .floating-window[data-v-
|
|
1432
|
+
.floating-window-wrapper .floating-window[data-v-fdb4e567] {
|
|
1433
1433
|
background-color: var(--bms-white);
|
|
1434
1434
|
height: 100%;
|
|
1435
1435
|
width: 100%;
|
|
@@ -1439,24 +1439,25 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1439
1439
|
display: grid;
|
|
1440
1440
|
grid-template-rows: auto 1fr;
|
|
1441
1441
|
box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
|
|
1442
|
+
z-index: var(--bms-z-index-modal);
|
|
1442
1443
|
}
|
|
1443
|
-
.floating-window-wrapper .floating-window__header[data-v-
|
|
1444
|
+
.floating-window-wrapper .floating-window__header[data-v-fdb4e567] {
|
|
1444
1445
|
display: flex;
|
|
1445
1446
|
justify-content: space-between;
|
|
1446
1447
|
align-items: center;
|
|
1447
1448
|
border-bottom: 1px solid var(--bms-grey-10);
|
|
1448
1449
|
padding: 1em;
|
|
1449
1450
|
}
|
|
1450
|
-
.floating-window-wrapper .floating-window__header h2[data-v-
|
|
1451
|
+
.floating-window-wrapper .floating-window__header h2[data-v-fdb4e567] {
|
|
1451
1452
|
margin: 0;
|
|
1452
1453
|
}
|
|
1453
|
-
.floating-window-wrapper .floating-window__content[data-v-
|
|
1454
|
+
.floating-window-wrapper .floating-window__content[data-v-fdb4e567] {
|
|
1454
1455
|
overflow-y: auto;
|
|
1455
1456
|
height: auto;
|
|
1456
1457
|
scrollbar-width: thin;
|
|
1457
1458
|
}
|
|
1458
1459
|
@container floating-window (min-width:900px) {
|
|
1459
|
-
.floating-window[data-v-
|
|
1460
|
+
.floating-window[data-v-fdb4e567] {
|
|
1460
1461
|
max-height: 300px;
|
|
1461
1462
|
max-width: 80%;
|
|
1462
1463
|
}
|
|
@@ -2006,42 +2007,48 @@ nav .additional[data-v-8b4752b4] {
|
|
|
2006
2007
|
.menu-slide-left-fade-enter-from .menu__container[data-v-02719cac],
|
|
2007
2008
|
.menu-slide-left-fade-leave-to .menu__container[data-v-02719cac] {
|
|
2008
2009
|
transform: translate3d(-10%, 0, 0);
|
|
2009
|
-
}.tab[data-v-
|
|
2010
|
+
}.tab[data-v-b6feec3b] {
|
|
2010
2011
|
--tab-border-color: transparent;
|
|
2011
2012
|
--tab-color: var(--bms-font-color);
|
|
2012
2013
|
color: var(--tab-color);
|
|
2013
2014
|
text-decoration: none;
|
|
2014
2015
|
border-bottom: 4px solid var(--tab-border-color);
|
|
2015
2016
|
padding: 0 8px 16px 8px;
|
|
2017
|
+
cursor: pointer;
|
|
2018
|
+
}
|
|
2019
|
+
.tab[data-v-b6feec3b] a {
|
|
2020
|
+
color: var(--tab-color);
|
|
2021
|
+
text-decoration: none;
|
|
2016
2022
|
}
|
|
2017
|
-
.tab[data-v-
|
|
2023
|
+
.tab[data-v-b6feec3b]:hover, .tab__hover[data-v-b6feec3b] {
|
|
2018
2024
|
--tab-border-color: var(--bms-main-50);
|
|
2025
|
+
text-decoration: none;
|
|
2019
2026
|
}
|
|
2020
|
-
.tab.active[data-v-
|
|
2027
|
+
.tab.active[data-v-b6feec3b] {
|
|
2021
2028
|
--tab-border-color: var(--bms-main-100);
|
|
2022
2029
|
}
|
|
2023
|
-
.tab.disabled[data-v-
|
|
2030
|
+
.tab.disabled[data-v-b6feec3b] {
|
|
2024
2031
|
--tab-border-color: var(transparent);
|
|
2025
2032
|
--tab-color: var(--bms-grey-50);
|
|
2026
2033
|
pointer-events: none;
|
|
2027
2034
|
}
|
|
2028
|
-
.tab.error[data-v-
|
|
2035
|
+
.tab.error[data-v-b6feec3b] {
|
|
2029
2036
|
--tab-border-color: var(--bms-danger-color);
|
|
2030
2037
|
--tab-color: var(--bms-danger-color);
|
|
2031
|
-
}.tabs-header[data-v-
|
|
2038
|
+
}.tabs-header[data-v-9f2a5368] {
|
|
2032
2039
|
display: flex;
|
|
2033
2040
|
align-items: center;
|
|
2034
2041
|
border-bottom: 1px solid var(--bms-grey-25);
|
|
2035
2042
|
box-sizing: border-box;
|
|
2036
2043
|
}
|
|
2037
|
-
.tabs-header .tabs-title[data-v-
|
|
2044
|
+
.tabs-header .tabs-title[data-v-9f2a5368] {
|
|
2038
2045
|
margin-right: auto;
|
|
2039
2046
|
margin-bottom: 16px;
|
|
2040
2047
|
}
|
|
2041
|
-
.tabs-header .tabs-title h3[data-v-
|
|
2048
|
+
.tabs-header .tabs-title h3[data-v-9f2a5368] {
|
|
2042
2049
|
margin: 0;
|
|
2043
2050
|
}
|
|
2044
|
-
.tabs-header
|
|
2051
|
+
.tabs-header span[data-v-9f2a5368] {
|
|
2045
2052
|
position: relative;
|
|
2046
2053
|
top: 1px;
|
|
2047
2054
|
}.ui-menu[data-v-a5b2b7f5] {
|
|
@@ -2243,47 +2250,47 @@ nav .additional[data-v-8b4752b4] {
|
|
|
2243
2250
|
.bms-pagination__select[data-v-e10f3b80] .field__wrapper {
|
|
2244
2251
|
min-width: 10em;
|
|
2245
2252
|
width: 10em;
|
|
2246
|
-
}.bms-table__row[data-v-
|
|
2253
|
+
}.bms-table__row[data-v-2ab3888f] {
|
|
2247
2254
|
--table-cell-padding: 1em;
|
|
2248
2255
|
background-color: rgb(255, 255, 255);
|
|
2249
2256
|
}
|
|
2250
|
-
.bms-table__row td[data-v-
|
|
2257
|
+
.bms-table__row td[data-v-2ab3888f] {
|
|
2251
2258
|
padding: var(--table-cell-padding);
|
|
2252
2259
|
background-color: rgb(255, 255, 255);
|
|
2253
2260
|
}
|
|
2254
|
-
.bms-table__row--dense[data-v-
|
|
2261
|
+
.bms-table__row--dense[data-v-2ab3888f] {
|
|
2255
2262
|
--table-cell-padding: 0.5em 1em;
|
|
2256
2263
|
}
|
|
2257
|
-
.bms-table__row--selected[data-v-
|
|
2264
|
+
.bms-table__row--selected[data-v-2ab3888f] td {
|
|
2258
2265
|
background-color: var(--bms-main-10);
|
|
2259
2266
|
}
|
|
2260
|
-
.bms-table__row--disabled td[data-v-
|
|
2267
|
+
.bms-table__row--disabled td[data-v-2ab3888f] {
|
|
2261
2268
|
color: var(--bms-grey-50);
|
|
2262
2269
|
}
|
|
2263
|
-
.bms-table__row__cell__checkbox[data-v-
|
|
2270
|
+
.bms-table__row__cell__checkbox[data-v-2ab3888f] {
|
|
2264
2271
|
width: 4em;
|
|
2265
2272
|
}
|
|
2266
|
-
.bms-table__row__cell--action[data-v-
|
|
2273
|
+
.bms-table__row__cell--action[data-v-2ab3888f] {
|
|
2267
2274
|
display: flex;
|
|
2268
2275
|
justify-content: end;
|
|
2269
2276
|
}
|
|
2270
|
-
.bms-table__row__cell--empty[data-v-
|
|
2277
|
+
.bms-table__row__cell--empty[data-v-2ab3888f] {
|
|
2271
2278
|
height: 360px;
|
|
2272
2279
|
}
|
|
2273
|
-
.bms-table__row__cell--child-element[data-v-
|
|
2280
|
+
.bms-table__row__cell--child-element[data-v-2ab3888f] {
|
|
2274
2281
|
display: inline-flex;
|
|
2275
2282
|
align-items: flex-end;
|
|
2276
2283
|
}
|
|
2277
|
-
.bms-table__row__cell--child-element__icon[data-v-
|
|
2284
|
+
.bms-table__row__cell--child-element__icon[data-v-2ab3888f] {
|
|
2278
2285
|
display: flex;
|
|
2279
2286
|
margin-right: 1em;
|
|
2280
|
-
}.bms-table[data-v-
|
|
2287
|
+
}.bms-table[data-v-45f34152] {
|
|
2281
2288
|
--table-cell-padding: 1em;
|
|
2282
2289
|
--table-cell-radius: var(--bms-border-radius-large);
|
|
2283
2290
|
--dynamic-border-height: 2px;
|
|
2284
2291
|
--table-border: 1px solid var(--bms-grey-10);
|
|
2285
2292
|
}
|
|
2286
|
-
.bms-table__loader[data-v-
|
|
2293
|
+
.bms-table__loader[data-v-45f34152] {
|
|
2287
2294
|
position: absolute;
|
|
2288
2295
|
background: rgba(255, 255, 255, 0.72);
|
|
2289
2296
|
inset: 0;
|
|
@@ -2293,110 +2300,110 @@ nav .additional[data-v-8b4752b4] {
|
|
|
2293
2300
|
font-size: 3em;
|
|
2294
2301
|
z-index: 10;
|
|
2295
2302
|
}
|
|
2296
|
-
.bms-table__actions[data-v-
|
|
2303
|
+
.bms-table__actions[data-v-45f34152] {
|
|
2297
2304
|
display: flex;
|
|
2298
2305
|
align-items: center;
|
|
2299
2306
|
justify-content: space-between;
|
|
2300
2307
|
margin-bottom: 16px;
|
|
2301
2308
|
}
|
|
2302
|
-
.bms-table__actions__saved-filters[data-v-
|
|
2309
|
+
.bms-table__actions__saved-filters[data-v-45f34152] {
|
|
2303
2310
|
display: flex;
|
|
2304
2311
|
align-items: center;
|
|
2305
2312
|
flex-wrap: wrap;
|
|
2306
2313
|
gap: 1em;
|
|
2307
2314
|
}
|
|
2308
|
-
.bms-table__actions__search[data-v-
|
|
2315
|
+
.bms-table__actions__search[data-v-45f34152] {
|
|
2309
2316
|
display: flex;
|
|
2310
2317
|
align-items: center;
|
|
2311
2318
|
gap: 1em;
|
|
2312
2319
|
}
|
|
2313
|
-
.bms-table__actions__custom[data-v-
|
|
2320
|
+
.bms-table__actions__custom[data-v-45f34152] {
|
|
2314
2321
|
display: flex;
|
|
2315
2322
|
gap: 1em;
|
|
2316
2323
|
}
|
|
2317
|
-
.bms-table__actions__custom[data-v-
|
|
2324
|
+
.bms-table__actions__custom[data-v-45f34152]:empty {
|
|
2318
2325
|
display: none;
|
|
2319
2326
|
}
|
|
2320
|
-
.bms-table__selected[data-v-
|
|
2327
|
+
.bms-table__selected[data-v-45f34152] {
|
|
2321
2328
|
margin-bottom: 1em;
|
|
2322
2329
|
}
|
|
2323
|
-
.bms-table__selected .select-mode-all[data-v-
|
|
2330
|
+
.bms-table__selected .select-mode-all[data-v-45f34152] {
|
|
2324
2331
|
cursor: pointer;
|
|
2325
2332
|
color: var(--bms-main-100);
|
|
2326
2333
|
}
|
|
2327
|
-
.bms-table__cell__checkbox[data-v-
|
|
2334
|
+
.bms-table__cell__checkbox[data-v-45f34152] {
|
|
2328
2335
|
width: 4em;
|
|
2329
2336
|
}
|
|
2330
|
-
.bms-table__cell--action[data-v-
|
|
2337
|
+
.bms-table__cell--action[data-v-45f34152] {
|
|
2331
2338
|
display: flex;
|
|
2332
2339
|
justify-content: end;
|
|
2333
2340
|
}
|
|
2334
|
-
.bms-table__cell--empty[data-v-
|
|
2341
|
+
.bms-table__cell--empty[data-v-45f34152] {
|
|
2335
2342
|
height: 360px;
|
|
2336
2343
|
}
|
|
2337
|
-
.bms-table__table[data-v-
|
|
2344
|
+
.bms-table__table[data-v-45f34152] {
|
|
2338
2345
|
width: 100%;
|
|
2339
2346
|
border-spacing: 0 var(--dynamic-border-height);
|
|
2340
2347
|
border-radius: var(--bms-border-radius-large);
|
|
2341
2348
|
border: var(--table-border);
|
|
2342
2349
|
position: relative;
|
|
2343
2350
|
}
|
|
2344
|
-
.bms-table__table-wrapper[data-v-
|
|
2351
|
+
.bms-table__table-wrapper[data-v-45f34152] {
|
|
2345
2352
|
position: relative;
|
|
2346
2353
|
}
|
|
2347
|
-
.bms-table__table thead[data-v-
|
|
2354
|
+
.bms-table__table thead[data-v-45f34152] {
|
|
2348
2355
|
position: sticky;
|
|
2349
2356
|
z-index: 2;
|
|
2350
2357
|
top: var(--header-height, 0);
|
|
2351
2358
|
}
|
|
2352
|
-
.bms-table__table--dense[data-v-
|
|
2359
|
+
.bms-table__table--dense[data-v-45f34152] {
|
|
2353
2360
|
--table-cell-padding: 0.5em 1em;
|
|
2354
2361
|
}
|
|
2355
|
-
.bms-table__table[data-v-
|
|
2362
|
+
.bms-table__table[data-v-45f34152] tr td {
|
|
2356
2363
|
padding: var(--table-cell-padding);
|
|
2357
2364
|
}
|
|
2358
|
-
.bms-table__table th[data-v-
|
|
2365
|
+
.bms-table__table th[data-v-45f34152] {
|
|
2359
2366
|
--header-content-sort-icon-color: var(--bms-grey-25);
|
|
2360
2367
|
--header-content-justify: start;
|
|
2361
2368
|
width: var(--table-cell-width, auto);
|
|
2362
2369
|
padding: var(--table-cell-padding);
|
|
2363
2370
|
}
|
|
2364
|
-
.bms-table__table th.sortable[data-v-
|
|
2371
|
+
.bms-table__table th.sortable[data-v-45f34152]:hover {
|
|
2365
2372
|
--header-content-sort-icon-color: var(--bms-grey-100);
|
|
2366
2373
|
cursor: pointer;
|
|
2367
2374
|
}
|
|
2368
|
-
.bms-table__table th.u-text-align-start[data-v-
|
|
2375
|
+
.bms-table__table th.u-text-align-start[data-v-45f34152] {
|
|
2369
2376
|
--header-content-justify: start;
|
|
2370
2377
|
}
|
|
2371
|
-
.bms-table__table th.u-text-align-center[data-v-
|
|
2378
|
+
.bms-table__table th.u-text-align-center[data-v-45f34152] {
|
|
2372
2379
|
--header-content-justify: center;
|
|
2373
2380
|
}
|
|
2374
|
-
.bms-table__table th.u-text-align-end[data-v-
|
|
2381
|
+
.bms-table__table th.u-text-align-end[data-v-45f34152] {
|
|
2375
2382
|
--header-content-justify: end;
|
|
2376
2383
|
}
|
|
2377
|
-
.bms-table__table th.sorted[data-v-
|
|
2384
|
+
.bms-table__table th.sorted[data-v-45f34152] {
|
|
2378
2385
|
--header-content-sort-icon-color: var(--bms-grey-100);
|
|
2379
2386
|
}
|
|
2380
|
-
.bms-table__table th .header-content[data-v-
|
|
2387
|
+
.bms-table__table th .header-content[data-v-45f34152] {
|
|
2381
2388
|
display: flex;
|
|
2382
2389
|
align-items: center;
|
|
2383
2390
|
justify-content: var(--header-content-justify);
|
|
2384
2391
|
gap: 0.5em;
|
|
2385
2392
|
}
|
|
2386
|
-
.bms-table__table th .header-content-sort[data-v-
|
|
2393
|
+
.bms-table__table th .header-content-sort[data-v-45f34152] {
|
|
2387
2394
|
color: var(--header-content-sort-icon-color);
|
|
2388
2395
|
}
|
|
2389
|
-
.bms-table__footer[data-v-
|
|
2396
|
+
.bms-table__footer[data-v-45f34152] {
|
|
2390
2397
|
padding-top: 16px;
|
|
2391
2398
|
}
|
|
2392
|
-
.bms-table .blob[data-v-
|
|
2399
|
+
.bms-table .blob[data-v-45f34152] {
|
|
2393
2400
|
visibility: hidden;
|
|
2394
2401
|
--table-blob-height: 80px;
|
|
2395
2402
|
}
|
|
2396
|
-
.bms-table .blob.dense[data-v-
|
|
2403
|
+
.bms-table .blob.dense[data-v-45f34152] {
|
|
2397
2404
|
--table-blob-height: 50px;
|
|
2398
2405
|
}
|
|
2399
|
-
.bms-table .blob[data-v-
|
|
2406
|
+
.bms-table .blob[data-v-45f34152] {
|
|
2400
2407
|
width: 200px;
|
|
2401
2408
|
height: var(--table-blob-height);
|
|
2402
2409
|
background-color: var(--bms-main-50);
|
|
@@ -2405,35 +2412,29 @@ nav .additional[data-v-8b4752b4] {
|
|
|
2405
2412
|
z-index: -5;
|
|
2406
2413
|
filter: blur(20px);
|
|
2407
2414
|
}
|
|
2408
|
-
[data-v-
|
|
2415
|
+
[data-v-45f34152] table {
|
|
2409
2416
|
padding: 0 var(--dynamic-border-height);
|
|
2410
2417
|
}
|
|
2411
|
-
[data-v-
|
|
2418
|
+
[data-v-45f34152] table th:first-child {
|
|
2412
2419
|
border-top-left-radius: var(--table-cell-radius);
|
|
2413
2420
|
}
|
|
2414
|
-
[data-v-
|
|
2415
|
-
border-top-left-radius: 0;
|
|
2416
|
-
}
|
|
2417
|
-
[data-v-9cbfc981] table .stuck th:last-child {
|
|
2418
|
-
border-top-right-radius: 0;
|
|
2419
|
-
}
|
|
2420
|
-
[data-v-9cbfc981] table th:last-child {
|
|
2421
|
+
[data-v-45f34152] table th:last-child {
|
|
2421
2422
|
border-top-right-radius: var(--table-cell-radius);
|
|
2422
2423
|
}
|
|
2423
|
-
[data-v-
|
|
2424
|
+
[data-v-45f34152] table tr:last-child td:first-child {
|
|
2424
2425
|
border-bottom-left-radius: var(--table-cell-radius);
|
|
2425
2426
|
}
|
|
2426
|
-
[data-v-
|
|
2427
|
+
[data-v-45f34152] table tr:last-child td:last-child {
|
|
2427
2428
|
border-bottom-right-radius: var(--table-cell-radius);
|
|
2428
2429
|
}
|
|
2429
|
-
[data-v-
|
|
2430
|
+
[data-v-45f34152] table th {
|
|
2430
2431
|
background-color: rgb(255, 255, 255);
|
|
2431
2432
|
}
|
|
2432
|
-
[data-v-
|
|
2433
|
+
[data-v-45f34152] table tbody {
|
|
2433
2434
|
overflow: hidden;
|
|
2434
2435
|
background: white;
|
|
2435
2436
|
}
|
|
2436
|
-
[data-v-
|
|
2437
|
+
[data-v-45f34152] table tbody tr {
|
|
2437
2438
|
position: relative;
|
|
2438
2439
|
}.filter-button-container[data-v-6047ada7] {
|
|
2439
2440
|
position: relative;
|
|
@@ -2508,7 +2509,7 @@ nav .additional[data-v-8b4752b4] {
|
|
|
2508
2509
|
padding-right: 32px;
|
|
2509
2510
|
}.table-search[data-v-c27df335] {
|
|
2510
2511
|
width: 260px;
|
|
2511
|
-
}.table-search[data-v-
|
|
2512
|
+
}.table-search[data-v-704a7453] {
|
|
2512
2513
|
width: 260px;
|
|
2513
2514
|
}.cocarde[data-v-d1c7b421] {
|
|
2514
2515
|
display: flex;
|