@ouestfrance/sipa-bms-ui 8.22.3 → 8.23.1

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 (48) hide show
  1. package/dist/components/button/BmsIconButton.vue.d.ts +1 -1
  2. package/dist/components/button/BmsToggleIcon.vue.d.ts +24 -0
  3. package/dist/components/button/UiButton.vue.d.ts +1 -1
  4. package/dist/components/form/BmsInputText.vue.d.ts +1 -1
  5. package/dist/components/form/BmsSearch.vue.d.ts +3 -3
  6. package/dist/components/form/BmsSelect.vue.d.ts +1 -1
  7. package/dist/components/form/RawSelect.vue.d.ts +1 -1
  8. package/dist/components/navigation/UiTenantSwitcher.vue.d.ts +3 -3
  9. package/dist/components/table/BmsPagination.vue.d.ts +2 -0
  10. package/dist/components/table/BmsServerTable.vue.d.ts +3 -3
  11. package/dist/components/table/BmsTable.vue.d.ts +3 -3
  12. package/dist/components/table/BmsTableFilters.vue.d.ts +5 -3
  13. package/dist/components/table/UiBmsTable.vue.d.ts +3 -3
  14. package/dist/components/table/UiFilterButton.vue.d.ts +2 -0
  15. package/dist/index.d.ts +2 -1
  16. package/dist/models/table.model.d.ts +5 -0
  17. package/dist/plugins/field/FieldComponent.vue.d.ts +1 -1
  18. package/dist/showroom/pages/table.vue.d.ts +2 -0
  19. package/dist/sipa-bms-ui.css +182 -115
  20. package/dist/sipa-bms-ui.es.js +232 -161
  21. package/dist/sipa-bms-ui.es.js.map +1 -1
  22. package/dist/sipa-bms-ui.umd.js +236 -163
  23. package/dist/sipa-bms-ui.umd.js.map +1 -1
  24. package/package.json +2 -2
  25. package/src/assets/scss/global-variables.scss +3 -0
  26. package/src/components/button/BmsToggleIcon.stories.js +145 -0
  27. package/src/components/button/BmsToggleIcon.vue +108 -0
  28. package/src/components/feedback/UiTooltip.vue +1 -1
  29. package/src/components/form/BmsInputNumber.stories.js +12 -2
  30. package/src/components/form/BmsInputNumber.vue +2 -1
  31. package/src/components/form/BmsInputText.stories.js +9 -0
  32. package/src/components/form/BmsInputText.vue +2 -0
  33. package/src/components/layout/BmsFloatingWindow.vue +13 -2
  34. package/src/components/layout/BmsSplitWindow.vue +1 -1
  35. package/src/components/table/BmsPagination.vue +3 -0
  36. package/src/components/table/BmsServerTable.stories.js +59 -3
  37. package/src/components/table/BmsServerTable.vue +10 -3
  38. package/src/components/table/BmsTable.stories.js +65 -1
  39. package/src/components/table/BmsTable.vue +15 -4
  40. package/src/components/table/BmsTableFilters.vue +15 -5
  41. package/src/components/table/UiBmsTable.stories.js +3 -0
  42. package/src/components/table/UiBmsTable.vue +14 -6
  43. package/src/components/table/UiFilterButton.vue +6 -1
  44. package/src/index.ts +3 -0
  45. package/src/models/table.model.ts +6 -0
  46. package/src/plugins/notifications/NotificationItem.vue +1 -1
  47. package/src/showroom/pages/floating-window.vue +36 -0
  48. package/src/showroom/pages/table.vue +9 -5
@@ -268,6 +268,59 @@
268
268
  --bms-button-disabled-background-color: transparent;
269
269
  --bms-button-disabled-border-color: transparent;
270
270
  --bms-button-disabled-text-color: var(--bms-disabled-color);
271
+ }.toggle-icon[data-v-1070e8e1] {
272
+ --icon-color: var(--bms-grey-100);
273
+ --underline-color: transparent;
274
+ background: none;
275
+ border: none;
276
+ padding: 0;
277
+ padding-bottom: 0.25em;
278
+ cursor: pointer;
279
+ display: inline-flex;
280
+ align-items: center;
281
+ justify-content: center;
282
+ position: relative;
283
+ }
284
+ .toggle-icon[data-v-1070e8e1] svg {
285
+ color: var(--icon-color);
286
+ transition: color 0.2s;
287
+ }
288
+ .toggle-icon[data-v-1070e8e1]::after {
289
+ content: "";
290
+ position: absolute;
291
+ bottom: 0;
292
+ left: 0;
293
+ right: 0;
294
+ height: 0.125em;
295
+ background-color: var(--underline-color);
296
+ transition: background-color 0.2s;
297
+ }
298
+ .toggle-icon[data-v-1070e8e1]:hover:not(.disabled), .toggle-icon._hover[data-v-1070e8e1]:not(.disabled) {
299
+ --icon-color: var(--bms-grey-140);
300
+ --underline-color: var(--bms-grey-140);
301
+ }
302
+ .toggle-icon.active[data-v-1070e8e1] {
303
+ --icon-color: var(--bms-main-100);
304
+ --underline-color: var(--bms-main-100);
305
+ }
306
+ .toggle-icon.active[data-v-1070e8e1]:hover:not(.disabled), .toggle-icon.active._hover[data-v-1070e8e1]:not(.disabled) {
307
+ --icon-color: var(--bms-main-140);
308
+ --underline-color: var(--bms-main-140);
309
+ }
310
+ .toggle-icon.disabled[data-v-1070e8e1] {
311
+ --icon-color: var(--bms-grey-50);
312
+ cursor: default;
313
+ pointer-events: none;
314
+ }
315
+ .toggle-icon.disabled.active[data-v-1070e8e1] {
316
+ --underline-color: var(--bms-grey-50);
317
+ }
318
+ .toggle-icon.small[data-v-1070e8e1] svg {
319
+ width: 1em;
320
+ height: 1em;
321
+ }
322
+ .toggle-icon.small[data-v-1070e8e1]::after {
323
+ height: 1.5px;
271
324
  }.alert[data-v-26caccdd] {
272
325
  --alert-main-color: var(--bms-main-100);
273
326
  --alert-secondary-color: var(--bms-main-10);
@@ -411,7 +464,7 @@
411
464
  width: 1em;
412
465
  height: 1em;
413
466
  display: block;
414
- }.bms-tooltip__text[data-v-4ae8c6bb] {
467
+ }.bms-tooltip__text[data-v-6fa8f4d8] {
415
468
  --bms-tooltip-background-color: white;
416
469
  --bms-tooltip-color: inherit;
417
470
  --bms-tooltip-margin: 4px;
@@ -425,15 +478,15 @@
425
478
  position: absolute;
426
479
  overflow: hidden;
427
480
  z-index: var(--bms-z-index-tooltip);
428
- filter: drop-shadow(0 0 0.8rem var(--bms-shadow-color));
481
+ box-shadow: var(--bms-box-shadow);
429
482
  color: var(--bms-font-color);
430
483
  transform: var(--bms-tooltip-transform);
431
484
  overflow-wrap: break-word;
432
485
  }
433
- .bms-tooltip__text.floating-window__expand-btn__bms-tooltip[data-v-4ae8c6bb] {
486
+ .bms-tooltip__text.floating-window__expand-btn__bms-tooltip[data-v-6fa8f4d8] {
434
487
  z-index: calc(var(--bms-z-index-modal) + 1);
435
488
  }
436
- .bms-tooltip__text[data-v-4ae8c6bb]::before {
489
+ .bms-tooltip__text[data-v-6fa8f4d8]::before {
437
490
  content: "";
438
491
  position: absolute;
439
492
  right: var(--bms-tooltip-indicator-position-right);
@@ -445,54 +498,54 @@
445
498
  border-style: solid;
446
499
  border-color: var(--bms-tooltip-indicator-border);
447
500
  }
448
- .bms-tooltip__text--top[data-v-4ae8c6bb], .bms-tooltip__text--bottom[data-v-4ae8c6bb] {
501
+ .bms-tooltip__text--top[data-v-6fa8f4d8], .bms-tooltip__text--bottom[data-v-6fa8f4d8] {
449
502
  --bms-tooltip-indicator-position-left: 50%;
450
503
  --bms-tooltip-indicator-position-right: initial;
451
504
  }
452
- .bms-tooltip__text--bottom[data-v-4ae8c6bb] {
505
+ .bms-tooltip__text--bottom[data-v-6fa8f4d8] {
453
506
  --bms-tooltip-indicator-position-top: initial;
454
507
  --bms-tooltip-indicator-position-bottom: 100%;
455
508
  --bms-tooltip-indicator-border: transparent transparent
456
509
  var(--bms-tooltip-background-color) transparent;
457
510
  }
458
- .bms-tooltip__text--top[data-v-4ae8c6bb] {
511
+ .bms-tooltip__text--top[data-v-6fa8f4d8] {
459
512
  --bms-tooltip-indicator-position-top: 100%;
460
513
  --bms-tooltip-indicator-position-bottom: initial;
461
514
  --bms-tooltip-indicator-border: var(--bms-tooltip-background-color)
462
515
  transparent transparent transparent;
463
516
  }
464
- .bms-tooltip__text--left[data-v-4ae8c6bb], .bms-tooltip__text--right[data-v-4ae8c6bb] {
517
+ .bms-tooltip__text--left[data-v-6fa8f4d8], .bms-tooltip__text--right[data-v-6fa8f4d8] {
465
518
  --bms-tooltip-indicator-position-top: 50%;
466
519
  --bms-tooltip-indicator-position-bottom: initial;
467
520
  }
468
- .bms-tooltip__text--left[data-v-4ae8c6bb] {
521
+ .bms-tooltip__text--left[data-v-6fa8f4d8] {
469
522
  --bms-tooltip-indicator-position-right: initial;
470
523
  --bms-tooltip-indicator-position-left: 100%;
471
524
  --bms-tooltip-indicator-border: transparent transparent transparent
472
525
  var(--bms-tooltip-background-color);
473
526
  }
474
- .bms-tooltip__text--right[data-v-4ae8c6bb] {
527
+ .bms-tooltip__text--right[data-v-6fa8f4d8] {
475
528
  --bms-tooltip-indicator-position-right: 100%;
476
529
  --bms-tooltip-indicator-position-left: initial;
477
530
  --bms-tooltip-indicator-border: transparent
478
531
  var(--bms-tooltip-background-color) transparent transparent;
479
532
  }
480
- .tooltip-fade-enter-active[data-v-4ae8c6bb] {
533
+ .tooltip-fade-enter-active[data-v-6fa8f4d8] {
481
534
  transition: opacity 0.2s ease;
482
535
  }
483
- .tooltip-fade-enter-from[data-v-4ae8c6bb] {
536
+ .tooltip-fade-enter-from[data-v-6fa8f4d8] {
484
537
  opacity: 0;
485
538
  }
486
- .tooltip-fade-enter-to[data-v-4ae8c6bb] {
539
+ .tooltip-fade-enter-to[data-v-6fa8f4d8] {
487
540
  opacity: 1;
488
541
  }
489
- .tooltip-fade-leave-active[data-v-4ae8c6bb] {
542
+ .tooltip-fade-leave-active[data-v-6fa8f4d8] {
490
543
  transition: opacity 0.3s ease;
491
544
  }
492
- .tooltip-fade-leave-from[data-v-4ae8c6bb] {
545
+ .tooltip-fade-leave-from[data-v-6fa8f4d8] {
493
546
  opacity: 1;
494
547
  }
495
- .tooltip-fade-leave-to[data-v-4ae8c6bb] {
548
+ .tooltip-fade-leave-to[data-v-6fa8f4d8] {
496
549
  opacity: 0;
497
550
  }.bms-tooltip-anchor-wrapper[data-v-5c0e03ac] {
498
551
  position: relative;
@@ -1426,7 +1479,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
1426
1479
  position: absolute;
1427
1480
  border-radius: 50%;
1428
1481
  filter: blur(10px);
1429
- }.floating-window-wrapper[data-v-3023af4c] {
1482
+ }.floating-window-wrapper[data-v-d8cae050] {
1430
1483
  --breakpoint: 900px;
1431
1484
  container-name: floating-window;
1432
1485
  container-type: inline-size;
@@ -1440,7 +1493,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
1440
1493
  align-items: center;
1441
1494
  pointer-events: none;
1442
1495
  }
1443
- .floating-window-wrapper .floating-window__drag-overlay[data-v-3023af4c] {
1496
+ .floating-window-wrapper .floating-window__drag-overlay[data-v-d8cae050] {
1444
1497
  position: fixed;
1445
1498
  top: 0;
1446
1499
  left: 0;
@@ -1450,31 +1503,31 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
1450
1503
  pointer-events: all;
1451
1504
  cursor: grabbing;
1452
1505
  }
1453
- .floating-window-wrapper .floating-window[data-v-3023af4c] {
1506
+ .floating-window-wrapper .floating-window[data-v-d8cae050] {
1454
1507
  background-color: var(--bms-white);
1455
1508
  border-radius: var(--bms-border-radius-large);
1456
1509
  border: 1px solid var(--bms-grey-10);
1457
1510
  pointer-events: all;
1458
1511
  display: grid;
1459
1512
  grid-template-rows: auto 1fr;
1460
- box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
1513
+ box-shadow: var(--bms-box-shadow);
1461
1514
  z-index: var(--bms-z-index-modal);
1462
1515
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1463
1516
  }
1464
- .floating-window-wrapper .floating-window--expanded[data-v-3023af4c] {
1517
+ .floating-window-wrapper .floating-window--expanded[data-v-d8cae050] {
1465
1518
  border-radius: 0;
1466
1519
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
1467
1520
  }
1468
- .floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-3023af4c] {
1521
+ .floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-d8cae050] {
1469
1522
  cursor: default;
1470
1523
  }
1471
- .floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-3023af4c]:active {
1524
+ .floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-d8cae050]:active {
1472
1525
  cursor: default;
1473
1526
  }
1474
- .floating-window-wrapper .floating-window--dragging[data-v-3023af4c] {
1527
+ .floating-window-wrapper .floating-window--dragging[data-v-d8cae050] {
1475
1528
  transition: none;
1476
1529
  }
1477
- .floating-window-wrapper .floating-window__header[data-v-3023af4c] {
1530
+ .floating-window-wrapper .floating-window__header[data-v-d8cae050] {
1478
1531
  display: flex;
1479
1532
  justify-content: space-between;
1480
1533
  align-items: center;
@@ -1483,20 +1536,19 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
1483
1536
  cursor: grab;
1484
1537
  user-select: none;
1485
1538
  }
1486
- .floating-window-wrapper .floating-window__header[data-v-3023af4c]:active {
1539
+ .floating-window-wrapper .floating-window__header[data-v-d8cae050]:active {
1487
1540
  cursor: grabbing;
1488
1541
  }
1489
- .floating-window-wrapper .floating-window__header__title[data-v-3023af4c] {
1542
+ .floating-window-wrapper .floating-window__header__title[data-v-d8cae050] {
1490
1543
  margin: 0;
1491
1544
  }
1492
- .floating-window-wrapper .floating-window__content[data-v-3023af4c] {
1545
+ .floating-window-wrapper .floating-window__content[data-v-d8cae050] {
1493
1546
  overflow-y: auto;
1494
1547
  height: auto;
1495
1548
  scrollbar-width: thin;
1496
1549
  }
1497
1550
  @container floating-window (min-width:900px) {
1498
- .floating-window[data-v-3023af4c] {
1499
- max-height: 300px;
1551
+ .floating-window[data-v-d8cae050] {
1500
1552
  max-width: 80%;
1501
1553
  }
1502
1554
  }.form-section[data-v-b5bab57e] {
@@ -1693,53 +1745,53 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
1693
1745
  background-color: var(--bms-white);
1694
1746
  border-radius: var(--bms-border-radius-large);
1695
1747
  padding: 1em 2em 1em 2em;
1696
- }.split-window[data-v-4d48c930] {
1748
+ }.split-window[data-v-b6e704f4] {
1697
1749
  display: grid;
1698
1750
  width: 100%;
1699
1751
  height: 100%;
1700
1752
  overflow: hidden;
1701
1753
  }
1702
- .split-window__pane[data-v-4d48c930] {
1754
+ .split-window__pane[data-v-b6e704f4] {
1703
1755
  display: flex;
1704
1756
  max-height: 100%;
1705
1757
  overflow: hidden;
1706
1758
  }
1707
- .split-window__separator[data-v-4d48c930] {
1759
+ .split-window__separator[data-v-b6e704f4] {
1708
1760
  position: relative;
1709
- z-index: var(--bms-z-index-fixed);
1761
+ z-index: calc(var(--bms-z-index-modal));
1710
1762
  }
1711
- .split-window__separator[data-v-4d48c930]:before {
1763
+ .split-window__separator[data-v-b6e704f4]:before {
1712
1764
  content: "";
1713
1765
  position: absolute;
1714
1766
  top: 0;
1715
1767
  left: 0;
1716
1768
  }
1717
- .split-window__separator[data-v-4d48c930]:focus-within:before {
1769
+ .split-window__separator[data-v-b6e704f4]:focus-within:before {
1718
1770
  outline: 2px solid black;
1719
1771
  }
1720
- .split-window--vertical .split-window__separator[data-v-4d48c930] {
1772
+ .split-window--vertical .split-window__separator[data-v-b6e704f4] {
1721
1773
  height: 100%;
1722
1774
  width: 0;
1723
1775
  }
1724
- .split-window--vertical .split-window__separator[data-v-4d48c930]:before {
1776
+ .split-window--vertical .split-window__separator[data-v-b6e704f4]:before {
1725
1777
  content: "";
1726
1778
  width: 8px;
1727
1779
  height: 100%;
1728
1780
  transform: translate(-50%, 0);
1729
1781
  cursor: col-resize;
1730
1782
  }
1731
- .split-window--horizontal .split-window__separator[data-v-4d48c930] {
1783
+ .split-window--horizontal .split-window__separator[data-v-b6e704f4] {
1732
1784
  height: 0;
1733
1785
  width: 100%;
1734
1786
  }
1735
- .split-window--horizontal .split-window__separator[data-v-4d48c930]:before {
1787
+ .split-window--horizontal .split-window__separator[data-v-b6e704f4]:before {
1736
1788
  content: "";
1737
1789
  width: 100%;
1738
1790
  height: 8px;
1739
1791
  transform: translate(0, -50%);
1740
1792
  cursor: row-resize;
1741
1793
  }
1742
- .split-window--dragging .split-window__separator[data-v-4d48c930]:before {
1794
+ .split-window--dragging .split-window__separator[data-v-b6e704f4]:before {
1743
1795
  position: fixed;
1744
1796
  top: 0;
1745
1797
  left: 0;
@@ -2287,19 +2339,19 @@ nav .additional[data-v-8b4752b4] {
2287
2339
  font-size: 1em;
2288
2340
  text-align: center;
2289
2341
  font-weight: normal;
2290
- }.bms-pagination[data-v-e10f3b80] {
2342
+ }.bms-pagination[data-v-86561b3b] {
2291
2343
  font-size: 0.88em;
2292
2344
  display: flex;
2293
2345
  gap: 2em;
2294
2346
  justify-content: flex-end;
2295
2347
  align-items: baseline;
2296
2348
  }
2297
- .bms-pagination__select[data-v-e10f3b80] {
2349
+ .bms-pagination__select[data-v-86561b3b] {
2298
2350
  display: flex;
2299
2351
  gap: 1em;
2300
2352
  align-items: baseline;
2301
2353
  }
2302
- .bms-pagination__select[data-v-e10f3b80] .field__wrapper {
2354
+ .bms-pagination__select[data-v-86561b3b] .field__wrapper {
2303
2355
  min-width: 10em;
2304
2356
  width: 10em;
2305
2357
  }.bms-table__row[data-v-2ab3888f] {
@@ -2336,13 +2388,13 @@ nav .additional[data-v-8b4752b4] {
2336
2388
  .bms-table__row__cell--child-element__icon[data-v-2ab3888f] {
2337
2389
  display: flex;
2338
2390
  margin-right: 1em;
2339
- }.bms-table[data-v-c7d4abaf] {
2391
+ }.bms-table[data-v-f6b2c936] {
2340
2392
  --table-cell-padding: 1em;
2341
2393
  --table-cell-radius: var(--bms-border-radius-large);
2342
2394
  --dynamic-border-height: 2px;
2343
2395
  --table-border: 1px solid var(--bms-grey-10);
2344
2396
  }
2345
- .bms-table__loader[data-v-c7d4abaf] {
2397
+ .bms-table__loader[data-v-f6b2c936] {
2346
2398
  position: absolute;
2347
2399
  background: rgba(255, 255, 255, 0.72);
2348
2400
  inset: 0;
@@ -2352,110 +2404,113 @@ nav .additional[data-v-8b4752b4] {
2352
2404
  font-size: 3em;
2353
2405
  z-index: 10;
2354
2406
  }
2355
- .bms-table__actions[data-v-c7d4abaf] {
2407
+ .bms-table__actions[data-v-f6b2c936] {
2356
2408
  display: flex;
2357
2409
  align-items: center;
2358
2410
  justify-content: space-between;
2359
- margin-bottom: 16px;
2411
+ margin-bottom: 1em;
2360
2412
  }
2361
- .bms-table__actions__saved-filters[data-v-c7d4abaf] {
2413
+ .bms-table__actions--small[data-v-f6b2c936] {
2414
+ margin-bottom: 0.5em;
2415
+ }
2416
+ .bms-table__actions__saved-filters[data-v-f6b2c936] {
2362
2417
  display: flex;
2363
2418
  align-items: center;
2364
2419
  flex-wrap: wrap;
2365
2420
  gap: 1em;
2366
2421
  }
2367
- .bms-table__actions__search[data-v-c7d4abaf] {
2422
+ .bms-table__actions__search[data-v-f6b2c936] {
2368
2423
  display: flex;
2369
2424
  align-items: center;
2370
2425
  gap: 1em;
2371
2426
  }
2372
- .bms-table__actions__custom[data-v-c7d4abaf] {
2427
+ .bms-table__actions__custom[data-v-f6b2c936] {
2373
2428
  display: flex;
2374
2429
  gap: 1em;
2375
2430
  }
2376
- .bms-table__actions__custom[data-v-c7d4abaf]:empty {
2431
+ .bms-table__actions__custom[data-v-f6b2c936]:empty {
2377
2432
  display: none;
2378
2433
  }
2379
- .bms-table__selected[data-v-c7d4abaf] {
2434
+ .bms-table__selected[data-v-f6b2c936] {
2380
2435
  margin-bottom: 1em;
2381
2436
  }
2382
- .bms-table__selected .select-mode-all[data-v-c7d4abaf] {
2437
+ .bms-table__selected .select-mode-all[data-v-f6b2c936] {
2383
2438
  cursor: pointer;
2384
2439
  color: var(--bms-main-100);
2385
2440
  }
2386
- .bms-table__cell__checkbox[data-v-c7d4abaf] {
2441
+ .bms-table__cell__checkbox[data-v-f6b2c936] {
2387
2442
  width: 4em;
2388
2443
  }
2389
- .bms-table__cell--action[data-v-c7d4abaf] {
2444
+ .bms-table__cell--action[data-v-f6b2c936] {
2390
2445
  display: flex;
2391
2446
  justify-content: end;
2392
2447
  }
2393
- .bms-table__cell--empty[data-v-c7d4abaf] {
2448
+ .bms-table__cell--empty[data-v-f6b2c936] {
2394
2449
  height: 360px;
2395
2450
  }
2396
- .bms-table__table[data-v-c7d4abaf] {
2451
+ .bms-table__table[data-v-f6b2c936] {
2397
2452
  width: 100%;
2398
2453
  border-spacing: 0 var(--dynamic-border-height);
2399
2454
  border-radius: var(--bms-border-radius-large);
2400
2455
  border: var(--table-border);
2401
2456
  position: relative;
2402
2457
  }
2403
- .bms-table__table-wrapper[data-v-c7d4abaf] {
2458
+ .bms-table__table-wrapper[data-v-f6b2c936] {
2404
2459
  position: relative;
2405
2460
  }
2406
- .bms-table__table thead[data-v-c7d4abaf] {
2461
+ .bms-table__table thead[data-v-f6b2c936] {
2407
2462
  position: sticky;
2408
2463
  z-index: 2;
2409
2464
  top: var(--header-height, 0);
2410
2465
  }
2411
- .bms-table__table--dense[data-v-c7d4abaf] {
2466
+ .bms-table__table--dense[data-v-f6b2c936] {
2412
2467
  --table-cell-padding: 0.5em 1em;
2413
2468
  }
2414
- .bms-table__table[data-v-c7d4abaf] tr td {
2469
+ .bms-table__table[data-v-f6b2c936] tr td {
2415
2470
  padding: var(--table-cell-padding);
2416
2471
  }
2417
- .bms-table__table th[data-v-c7d4abaf] {
2472
+ .bms-table__table th[data-v-f6b2c936] {
2418
2473
  --header-content-sort-icon-color: var(--bms-grey-25);
2419
2474
  --header-content-justify: start;
2420
2475
  width: var(--table-cell-width, auto);
2421
2476
  padding: var(--table-cell-padding);
2422
2477
  }
2423
- .bms-table__table th.sortable[data-v-c7d4abaf]:hover {
2478
+ .bms-table__table th.sortable[data-v-f6b2c936]:hover {
2424
2479
  --header-content-sort-icon-color: var(--bms-grey-100);
2425
2480
  cursor: pointer;
2426
2481
  }
2427
- .bms-table__table th.u-text-align-start[data-v-c7d4abaf] {
2482
+ .bms-table__table th.u-text-align-start[data-v-f6b2c936] {
2428
2483
  --header-content-justify: start;
2429
2484
  }
2430
- .bms-table__table th.u-text-align-center[data-v-c7d4abaf] {
2485
+ .bms-table__table th.u-text-align-center[data-v-f6b2c936] {
2431
2486
  --header-content-justify: center;
2432
2487
  }
2433
- .bms-table__table th.u-text-align-end[data-v-c7d4abaf] {
2488
+ .bms-table__table th.u-text-align-end[data-v-f6b2c936] {
2434
2489
  --header-content-justify: end;
2435
2490
  }
2436
- .bms-table__table th.sorted[data-v-c7d4abaf] {
2491
+ .bms-table__table th.sorted[data-v-f6b2c936] {
2437
2492
  --header-content-sort-icon-color: var(--bms-grey-100);
2438
2493
  }
2439
- .bms-table__table th .header-content[data-v-c7d4abaf] {
2494
+ .bms-table__table th .header-content[data-v-f6b2c936] {
2440
2495
  display: flex;
2441
2496
  align-items: center;
2442
2497
  justify-content: var(--header-content-justify);
2443
2498
  gap: 0.5em;
2444
2499
  }
2445
- .bms-table__table th .header-content-sort[data-v-c7d4abaf] {
2500
+ .bms-table__table th .header-content-sort[data-v-f6b2c936] {
2446
2501
  color: var(--header-content-sort-icon-color);
2447
2502
  }
2448
- .bms-table__footer[data-v-c7d4abaf] {
2503
+ .bms-table__footer[data-v-f6b2c936] {
2449
2504
  padding-top: 16px;
2450
2505
  }
2451
- .bms-table .blob[data-v-c7d4abaf] {
2506
+ .bms-table .blob[data-v-f6b2c936] {
2452
2507
  visibility: hidden;
2453
2508
  --table-blob-height: 80px;
2454
2509
  }
2455
- .bms-table .blob.dense[data-v-c7d4abaf] {
2510
+ .bms-table .blob.small[data-v-f6b2c936], .bms-table .blob.dense[data-v-f6b2c936] {
2456
2511
  --table-blob-height: 50px;
2457
2512
  }
2458
- .bms-table .blob[data-v-c7d4abaf] {
2513
+ .bms-table .blob[data-v-f6b2c936] {
2459
2514
  width: 200px;
2460
2515
  height: var(--table-blob-height);
2461
2516
  background-color: var(--bms-main-50);
@@ -2464,38 +2519,40 @@ nav .additional[data-v-8b4752b4] {
2464
2519
  z-index: -5;
2465
2520
  filter: blur(20px);
2466
2521
  }
2467
- [data-v-c7d4abaf] table {
2522
+ [data-v-f6b2c936] table {
2468
2523
  padding: 0 var(--dynamic-border-height);
2469
2524
  }
2470
- [data-v-c7d4abaf] table th:first-child {
2525
+ [data-v-f6b2c936] table th:first-child {
2471
2526
  border-top-left-radius: var(--table-cell-radius);
2472
2527
  }
2473
- [data-v-c7d4abaf] table th:last-child {
2528
+ [data-v-f6b2c936] table th:last-child {
2474
2529
  border-top-right-radius: var(--table-cell-radius);
2475
2530
  }
2476
- [data-v-c7d4abaf] table tr:last-child td:first-child {
2531
+ [data-v-f6b2c936] table tr:last-child td:first-child {
2477
2532
  border-bottom-left-radius: var(--table-cell-radius);
2478
2533
  }
2479
- [data-v-c7d4abaf] table tr:last-child td:last-child {
2534
+ [data-v-f6b2c936] table tr:last-child td:last-child {
2480
2535
  border-bottom-right-radius: var(--table-cell-radius);
2481
2536
  }
2482
- [data-v-c7d4abaf] table th {
2537
+ [data-v-f6b2c936] table th {
2483
2538
  background-color: rgb(255, 255, 255);
2484
2539
  }
2485
- [data-v-c7d4abaf] table tbody {
2540
+ [data-v-f6b2c936] table tbody {
2486
2541
  overflow: hidden;
2487
2542
  background: white;
2488
2543
  }
2489
- [data-v-c7d4abaf] table tbody tr {
2544
+ [data-v-f6b2c936] table tbody tr {
2490
2545
  position: relative;
2491
- }.filter-button-container[data-v-6047ada7] {
2546
+ }.filter-button-container[data-v-36a9eb9a] {
2492
2547
  position: relative;
2493
2548
  }
2494
- .filter-button-container .filter-button[data-v-6047ada7] {
2495
- padding: 0.5em 0;
2549
+ .filter-button-container[data-v-36a9eb9a] .bms-button .content {
2550
+ margin: 0;
2551
+ }
2552
+ .filter-button-container .filter-button[data-v-36a9eb9a] {
2496
2553
  font-size: 20px;
2497
2554
  }
2498
- .filter-button-container .indicator[data-v-6047ada7] {
2555
+ .filter-button-container .indicator[data-v-36a9eb9a] {
2499
2556
  position: absolute;
2500
2557
  pointer-events: none;
2501
2558
  top: 8px;
@@ -2511,57 +2568,64 @@ nav .additional[data-v-8b4752b4] {
2511
2568
  font-size: 0.75em;
2512
2569
  font-weight: 700;
2513
2570
  }
2514
- .indicator-scale-enter-active[data-v-6047ada7] {
2571
+ .indicator-scale-enter-active[data-v-36a9eb9a] {
2515
2572
  transition: all 0.3s ease 0.2s;
2516
2573
  }
2517
- .indicator-scale-leave-active[data-v-6047ada7] {
2574
+ .indicator-scale-leave-active[data-v-36a9eb9a] {
2518
2575
  transition: all 0.3s ease;
2519
2576
  }
2520
- .indicator-scale-enter-from[data-v-6047ada7],
2521
- .indicator-scale-leave-to[data-v-6047ada7] {
2577
+ .indicator-scale-enter-from[data-v-36a9eb9a],
2578
+ .indicator-scale-leave-to[data-v-36a9eb9a] {
2522
2579
  opacity: 0;
2523
2580
  transform: scale(50%);
2524
2581
  }
2525
- .indicator-scale-enter-to[data-v-6047ada7],
2526
- .indicator-scale-leave-from[data-v-6047ada7] {
2582
+ .indicator-scale-enter-to[data-v-36a9eb9a],
2583
+ .indicator-scale-leave-from[data-v-36a9eb9a] {
2527
2584
  opacity: 1;
2528
2585
  transform: scale(1);
2529
- }.filters[data-v-94b8e913] {
2530
- padding: 16px;
2586
+ }.filters[data-v-04b66f64] {
2587
+ padding: 1em;
2531
2588
  background: var(--bms-white);
2532
2589
  border: 1px solid var(--bms-grey-10);
2533
2590
  border-radius: var(--bms-border-radius-large);
2534
- margin-bottom: 16px;
2591
+ margin-bottom: 1em;
2535
2592
  }
2536
- .filters__header[data-v-94b8e913] {
2593
+ .filters--small[data-v-04b66f64] {
2594
+ margin-bottom: 0.5em;
2595
+ padding: 0.5em;
2596
+ }
2597
+ .filters__header[data-v-04b66f64] {
2537
2598
  display: flex;
2538
2599
  justify-content: space-between;
2539
2600
  }
2540
- .filters__header-title[data-v-94b8e913] {
2601
+ .filters__header-title[data-v-04b66f64] {
2541
2602
  font-size: 18px;
2542
2603
  font-weight: bold;
2543
2604
  gap: 1rem;
2544
2605
  display: flex;
2545
2606
  align-items: center;
2546
2607
  }
2547
- .filters__inputs[data-v-94b8e913] {
2608
+ .filters__inputs[data-v-04b66f64] {
2548
2609
  display: flex;
2549
2610
  flex-wrap: wrap;
2550
- padding-top: 16px;
2551
2611
  align-items: flex-end;
2552
2612
  row-gap: 8px;
2613
+ padding-top: 1em;
2614
+ }
2615
+ .filters__inputs--small[data-v-04b66f64] {
2616
+ padding-top: 0.5em;
2553
2617
  }
2554
- .filters__inputs .input[data-v-94b8e913] {
2618
+ .filters__inputs .input[data-v-04b66f64] {
2555
2619
  width: 25%;
2556
2620
  }
2557
- .filters__inputs .input.large[data-v-94b8e913] {
2621
+ .filters__inputs .input.large[data-v-04b66f64] {
2558
2622
  width: 50%;
2559
2623
  }
2560
- .filters__inputs .input[data-v-94b8e913] {
2624
+ .filters__inputs .input[data-v-04b66f64] {
2561
2625
  padding-right: 32px;
2562
- }.table-search[data-v-c27df335] {
2626
+ }.table-search[data-v-c674a0d1] {
2563
2627
  width: 260px;
2564
- }.table-search[data-v-704a7453] {
2628
+ }.table-search[data-v-ae9bcfca] {
2565
2629
  width: 260px;
2566
2630
  }.cocarde[data-v-d1c7b421] {
2567
2631
  display: flex;
@@ -2598,7 +2662,7 @@ nav .additional[data-v-8b4752b4] {
2598
2662
  }
2599
2663
  .cocarde--x-large[data-v-d1c7b421] {
2600
2664
  --cocarde-size: 4em;
2601
- }.bms-notification[data-v-2a9037b5] {
2665
+ }.bms-notification[data-v-cf005e57] {
2602
2666
  --notification-background-color: white;
2603
2667
  display: flex;
2604
2668
  flex-direction: column;
@@ -2607,38 +2671,38 @@ nav .additional[data-v-8b4752b4] {
2607
2671
  background-color: var(--notification-background-color);
2608
2672
  color: white;
2609
2673
  position: relative;
2610
- box-shadow: 0 4px 8px var(--bms-shadow-color);
2674
+ box-shadow: var(--bms-box-shadow);
2611
2675
  }
2612
- .bms-notification .main-info[data-v-2a9037b5] {
2676
+ .bms-notification .main-info[data-v-cf005e57] {
2613
2677
  display: flex;
2614
2678
  align-items: center;
2615
2679
  gap: 1em;
2616
2680
  padding: 0.75em;
2617
2681
  padding-right: 3em;
2618
2682
  }
2619
- .bms-notification .details[data-v-2a9037b5] {
2683
+ .bms-notification .details[data-v-cf005e57] {
2620
2684
  border-top: 1px solid white;
2621
2685
  text-align: center;
2622
2686
  padding: 0.5em;
2623
2687
  border-radius: 0 0 var(--bms-border-radius) var(--bms-border-radius);
2624
2688
  }
2625
- .bms-notification .details[data-v-2a9037b5]:hover {
2689
+ .bms-notification .details[data-v-cf005e57]:hover {
2626
2690
  cursor: pointer;
2627
2691
  }
2628
- .bms-notification--success[data-v-2a9037b5] {
2692
+ .bms-notification--success[data-v-cf005e57] {
2629
2693
  --notification-background-color: var(--bms-success-color);
2630
2694
  }
2631
- .bms-notification--error[data-v-2a9037b5] {
2695
+ .bms-notification--error[data-v-cf005e57] {
2632
2696
  --notification-background-color: var(--bms-danger-color);
2633
2697
  }
2634
- .bms-notification__icon[data-v-2a9037b5] {
2698
+ .bms-notification__icon[data-v-cf005e57] {
2635
2699
  display: block;
2636
2700
  line-height: 1;
2637
2701
  width: 1em;
2638
2702
  height: 1em;
2639
2703
  flex-shrink: 0;
2640
2704
  }
2641
- .bms-notification__content[data-v-2a9037b5] {
2705
+ .bms-notification__content[data-v-cf005e57] {
2642
2706
  overflow: hidden;
2643
2707
  text-overflow: ellipsis;
2644
2708
  display: -webkit-box;
@@ -2646,12 +2710,12 @@ nav .additional[data-v-8b4752b4] {
2646
2710
  line-clamp: 2;
2647
2711
  -webkit-box-orient: vertical;
2648
2712
  }
2649
- .bms-notification[data-v-2a9037b5] .bms-notification__close-button {
2713
+ .bms-notification[data-v-cf005e57] .bms-notification__close-button {
2650
2714
  position: absolute;
2651
2715
  right: 0.2em;
2652
2716
  color: white;
2653
2717
  }
2654
- .bms-notification[data-v-2a9037b5] .bms-notification__close-button:hover {
2718
+ .bms-notification[data-v-cf005e57] .bms-notification__close-button:hover {
2655
2719
  color: var(--notification-background-color);
2656
2720
  }.bms-notifications[data-v-b20e6fa0] {
2657
2721
  --bms-notifications-width: 360px;
@@ -2892,6 +2956,9 @@ section {
2892
2956
  --bms-border-radius-large: 8px;
2893
2957
  --bms-border-radius-xlarge: 16px;
2894
2958
  --bms-shadow-color: var(--bms-grey-10);
2959
+ --bms-box-shadow:
2960
+ rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
2961
+ rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
2895
2962
  --bms-danger-color: var(--bms-red-100);
2896
2963
  --bms-warning-color: var(--bms-orange-100);
2897
2964
  --bms-default-color: var(--bms-blue-100);