@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.
Files changed (35) hide show
  1. package/dist/components/navigation/BmsTabs.vue.d.ts +6 -1
  2. package/dist/components/navigation/UiTab.vue.d.ts +5 -4
  3. package/dist/components/navigation/UiTabs.vue.d.ts +21 -0
  4. package/dist/components/table/BmsTable.vue.d.ts +3 -1
  5. package/dist/components/table/UiBmsTable.vue.d.ts +1 -1
  6. package/dist/helpers/tab.helper.d.ts +2 -0
  7. package/dist/helpers/table.helper.d.ts +1 -0
  8. package/dist/models/tab.model.d.ts +5 -0
  9. package/dist/models/table.model.d.ts +2 -1
  10. package/dist/sipa-bms-ui.css +70 -69
  11. package/dist/sipa-bms-ui.es.js +380 -294
  12. package/dist/sipa-bms-ui.es.js.map +1 -1
  13. package/dist/sipa-bms-ui.umd.js +388 -301
  14. package/dist/sipa-bms-ui.umd.js.map +1 -1
  15. package/package.json +1 -1
  16. package/src/components/layout/BmsFloatingWindow.vue +1 -0
  17. package/src/components/navigation/BmsTabs.stories.js +58 -4
  18. package/src/components/navigation/BmsTabs.vue +53 -33
  19. package/src/components/navigation/UiTab.stories.js +5 -5
  20. package/src/components/navigation/UiTab.vue +15 -20
  21. package/src/components/navigation/UiTabs.stories.js +34 -0
  22. package/src/components/navigation/UiTabs.vue +76 -0
  23. package/src/components/table/BmsTable.stories.js +47 -0
  24. package/src/components/table/BmsTable.vue +22 -3
  25. package/src/components/table/UiBmsTable.spec.ts +47 -3
  26. package/src/components/table/UiBmsTable.stories.js +43 -0
  27. package/src/components/table/UiBmsTable.vue +51 -91
  28. package/src/components/table/UiBmsTableRow.vue +18 -3
  29. package/src/documentation/principles.mdx +73 -7
  30. package/src/helpers/tab.helper.ts +3 -0
  31. package/src/helpers/table.helper.ts +19 -0
  32. package/src/models/tab.model.ts +6 -0
  33. package/src/models/table.model.ts +1 -0
  34. package/src/showroom/pages/server-table.vue +1 -4
  35. 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, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
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
- currentRoute: RouteLocation;
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, {}, any>, {
8
- default?(_: {}): any;
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;
@@ -1,7 +1,7 @@
1
1
  import { SelectMode, Sort, TableHeader } from '../../models';
2
2
  interface UiBmsTableProps {
3
3
  headers: TableHeader[];
4
- items: unknown[];
4
+ items: any[];
5
5
  mode?: 'normal' | 'dense';
6
6
  loading?: boolean;
7
7
  hasFilters?: boolean;
@@ -0,0 +1,2 @@
1
+ import { Tab } from '../models';
2
+ export declare const getTabId: (tab: Tab) => string;
@@ -14,3 +14,4 @@ export declare const getFiltersAsQueryParams: (params: {
14
14
  sort?: Sort;
15
15
  }) => any;
16
16
  export declare const enforceActionsColumnHeader: (headers: TableHeader[]) => TableHeader[];
17
+ export declare const getHeaderClasses: (header: TableHeader, sort: Sort) => string[];
@@ -1,7 +1,12 @@
1
1
  export interface Tab {
2
2
  routePath?: string;
3
3
  routeName?: string;
4
+ id?: string;
4
5
  name: string;
5
6
  disabled?: boolean;
6
7
  error?: boolean;
7
8
  }
9
+ export interface RouteTab extends Tab {
10
+ routePath?: string;
11
+ routeName?: string;
12
+ }
@@ -59,5 +59,6 @@ export interface SavedFilter {
59
59
  }
60
60
  export declare enum SelectMode {
61
61
  ALL = "all",
62
- DEFAULT = "default"
62
+ DEFAULT = "default",
63
+ SINGLE = "single"
63
64
  }
@@ -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-9bfb3c86] {
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-9bfb3c86] {
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-9bfb3c86] {
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-9bfb3c86] {
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-9bfb3c86] {
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-9bfb3c86] {
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-d2f6b84b] {
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-d2f6b84b]:hover, .tab__hover[data-v-d2f6b84b] {
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-d2f6b84b] {
2027
+ .tab.active[data-v-b6feec3b] {
2021
2028
  --tab-border-color: var(--bms-main-100);
2022
2029
  }
2023
- .tab.disabled[data-v-d2f6b84b] {
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-d2f6b84b] {
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-f862fbda] {
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-f862fbda] {
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-f862fbda] {
2048
+ .tabs-header .tabs-title h3[data-v-9f2a5368] {
2042
2049
  margin: 0;
2043
2050
  }
2044
- .tabs-header a[data-v-f862fbda] {
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-c6304837] {
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-c6304837] {
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-c6304837] {
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-c6304837] td {
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-c6304837] {
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-c6304837] {
2270
+ .bms-table__row__cell__checkbox[data-v-2ab3888f] {
2264
2271
  width: 4em;
2265
2272
  }
2266
- .bms-table__row__cell--action[data-v-c6304837] {
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-c6304837] {
2277
+ .bms-table__row__cell--empty[data-v-2ab3888f] {
2271
2278
  height: 360px;
2272
2279
  }
2273
- .bms-table__row__cell--child-element[data-v-c6304837] {
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-c6304837] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981]:empty {
2324
+ .bms-table__actions__custom[data-v-45f34152]:empty {
2318
2325
  display: none;
2319
2326
  }
2320
- .bms-table__selected[data-v-9cbfc981] {
2327
+ .bms-table__selected[data-v-45f34152] {
2321
2328
  margin-bottom: 1em;
2322
2329
  }
2323
- .bms-table__selected .select-mode-all[data-v-9cbfc981] {
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-9cbfc981] {
2334
+ .bms-table__cell__checkbox[data-v-45f34152] {
2328
2335
  width: 4em;
2329
2336
  }
2330
- .bms-table__cell--action[data-v-9cbfc981] {
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-9cbfc981] {
2341
+ .bms-table__cell--empty[data-v-45f34152] {
2335
2342
  height: 360px;
2336
2343
  }
2337
- .bms-table__table[data-v-9cbfc981] {
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-9cbfc981] {
2351
+ .bms-table__table-wrapper[data-v-45f34152] {
2345
2352
  position: relative;
2346
2353
  }
2347
- .bms-table__table thead[data-v-9cbfc981] {
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-9cbfc981] {
2359
+ .bms-table__table--dense[data-v-45f34152] {
2353
2360
  --table-cell-padding: 0.5em 1em;
2354
2361
  }
2355
- .bms-table__table[data-v-9cbfc981] tr td {
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-9cbfc981] {
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-9cbfc981]:hover {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
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-9cbfc981] {
2396
+ .bms-table__footer[data-v-45f34152] {
2390
2397
  padding-top: 16px;
2391
2398
  }
2392
- .bms-table .blob[data-v-9cbfc981] {
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-9cbfc981] {
2403
+ .bms-table .blob.dense[data-v-45f34152] {
2397
2404
  --table-blob-height: 50px;
2398
2405
  }
2399
- .bms-table .blob[data-v-9cbfc981] {
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-9cbfc981] table {
2415
+ [data-v-45f34152] table {
2409
2416
  padding: 0 var(--dynamic-border-height);
2410
2417
  }
2411
- [data-v-9cbfc981] table th:first-child {
2418
+ [data-v-45f34152] table th:first-child {
2412
2419
  border-top-left-radius: var(--table-cell-radius);
2413
2420
  }
2414
- [data-v-9cbfc981] table .stuck th:first-child {
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-9cbfc981] table tr:last-child td:first-child {
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-9cbfc981] table tr:last-child td:last-child {
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-9cbfc981] table th {
2430
+ [data-v-45f34152] table th {
2430
2431
  background-color: rgb(255, 255, 255);
2431
2432
  }
2432
- [data-v-9cbfc981] table tbody {
2433
+ [data-v-45f34152] table tbody {
2433
2434
  overflow: hidden;
2434
2435
  background: white;
2435
2436
  }
2436
- [data-v-9cbfc981] table tbody tr {
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-2f003e4e] {
2512
+ }.table-search[data-v-704a7453] {
2512
2513
  width: 260px;
2513
2514
  }.cocarde[data-v-d1c7b421] {
2514
2515
  display: flex;