@ouestfrance/sipa-bms-ui 8.22.3 → 8.23.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/button/BmsIconButton.vue.d.ts +1 -1
- package/dist/components/button/BmsToggleIcon.vue.d.ts +24 -0
- package/dist/components/button/UiButton.vue.d.ts +1 -1
- package/dist/components/form/BmsInputText.vue.d.ts +1 -1
- package/dist/components/form/BmsSearch.vue.d.ts +3 -3
- package/dist/components/form/BmsSelect.vue.d.ts +1 -1
- package/dist/components/form/RawSelect.vue.d.ts +1 -1
- package/dist/components/navigation/UiTenantSwitcher.vue.d.ts +3 -3
- package/dist/components/table/BmsPagination.vue.d.ts +2 -0
- package/dist/components/table/BmsServerTable.vue.d.ts +3 -3
- package/dist/components/table/BmsTable.vue.d.ts +3 -3
- package/dist/components/table/BmsTableFilters.vue.d.ts +5 -3
- package/dist/components/table/UiBmsTable.vue.d.ts +3 -3
- package/dist/components/table/UiFilterButton.vue.d.ts +2 -0
- package/dist/index.d.ts +2 -1
- package/dist/models/table.model.d.ts +5 -0
- package/dist/plugins/field/FieldComponent.vue.d.ts +1 -1
- package/dist/showroom/pages/table.vue.d.ts +2 -0
- package/dist/sipa-bms-ui.css +151 -87
- package/dist/sipa-bms-ui.es.js +230 -159
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +234 -161
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/components/button/BmsToggleIcon.stories.js +145 -0
- package/src/components/button/BmsToggleIcon.vue +108 -0
- package/src/components/form/BmsInputNumber.stories.js +12 -2
- package/src/components/form/BmsInputNumber.vue +2 -1
- package/src/components/form/BmsInputText.stories.js +9 -0
- package/src/components/form/BmsInputText.vue +2 -0
- package/src/components/layout/BmsFloatingWindow.vue +12 -1
- package/src/components/layout/BmsSplitWindow.vue +1 -1
- package/src/components/table/BmsPagination.vue +3 -0
- package/src/components/table/BmsServerTable.stories.js +59 -3
- package/src/components/table/BmsServerTable.vue +9 -2
- package/src/components/table/BmsTable.stories.js +65 -1
- package/src/components/table/BmsTable.vue +14 -3
- package/src/components/table/BmsTableFilters.vue +15 -5
- package/src/components/table/UiBmsTable.stories.js +3 -0
- package/src/components/table/UiBmsTable.vue +14 -5
- package/src/components/table/UiFilterButton.vue +6 -1
- package/src/index.ts +3 -0
- package/src/models/table.model.ts +6 -0
- package/src/showroom/pages/floating-window.vue +36 -0
package/dist/sipa-bms-ui.css
CHANGED
|
@@ -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);
|
|
@@ -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-
|
|
1482
|
+
}.floating-window-wrapper[data-v-ad6f9b71] {
|
|
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-
|
|
1496
|
+
.floating-window-wrapper .floating-window__drag-overlay[data-v-ad6f9b71] {
|
|
1444
1497
|
position: fixed;
|
|
1445
1498
|
top: 0;
|
|
1446
1499
|
left: 0;
|
|
@@ -1450,7 +1503,7 @@ 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-
|
|
1506
|
+
.floating-window-wrapper .floating-window[data-v-ad6f9b71] {
|
|
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);
|
|
@@ -1461,20 +1514,20 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
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-
|
|
1517
|
+
.floating-window-wrapper .floating-window--expanded[data-v-ad6f9b71] {
|
|
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-
|
|
1521
|
+
.floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-ad6f9b71] {
|
|
1469
1522
|
cursor: default;
|
|
1470
1523
|
}
|
|
1471
|
-
.floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-
|
|
1524
|
+
.floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-ad6f9b71]:active {
|
|
1472
1525
|
cursor: default;
|
|
1473
1526
|
}
|
|
1474
|
-
.floating-window-wrapper .floating-window--dragging[data-v-
|
|
1527
|
+
.floating-window-wrapper .floating-window--dragging[data-v-ad6f9b71] {
|
|
1475
1528
|
transition: none;
|
|
1476
1529
|
}
|
|
1477
|
-
.floating-window-wrapper .floating-window__header[data-v-
|
|
1530
|
+
.floating-window-wrapper .floating-window__header[data-v-ad6f9b71] {
|
|
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-
|
|
1539
|
+
.floating-window-wrapper .floating-window__header[data-v-ad6f9b71]:active {
|
|
1487
1540
|
cursor: grabbing;
|
|
1488
1541
|
}
|
|
1489
|
-
.floating-window-wrapper .floating-window__header__title[data-v-
|
|
1542
|
+
.floating-window-wrapper .floating-window__header__title[data-v-ad6f9b71] {
|
|
1490
1543
|
margin: 0;
|
|
1491
1544
|
}
|
|
1492
|
-
.floating-window-wrapper .floating-window__content[data-v-
|
|
1545
|
+
.floating-window-wrapper .floating-window__content[data-v-ad6f9b71] {
|
|
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-
|
|
1499
|
-
max-height: 300px;
|
|
1551
|
+
.floating-window[data-v-ad6f9b71] {
|
|
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-
|
|
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-
|
|
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-
|
|
1759
|
+
.split-window__separator[data-v-b6e704f4] {
|
|
1708
1760
|
position: relative;
|
|
1709
|
-
z-index: var(--bms-z-index-
|
|
1761
|
+
z-index: calc(var(--bms-z-index-modal));
|
|
1710
1762
|
}
|
|
1711
|
-
.split-window__separator[data-v-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
2391
|
+
}.bms-table[data-v-fb70a13c] {
|
|
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-
|
|
2397
|
+
.bms-table__loader[data-v-fb70a13c] {
|
|
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-
|
|
2407
|
+
.bms-table__actions[data-v-fb70a13c] {
|
|
2356
2408
|
display: flex;
|
|
2357
2409
|
align-items: center;
|
|
2358
2410
|
justify-content: space-between;
|
|
2359
|
-
margin-bottom:
|
|
2411
|
+
margin-bottom: 1em;
|
|
2360
2412
|
}
|
|
2361
|
-
.bms-
|
|
2413
|
+
.bms-table__actions--small[data-v-fb70a13c] {
|
|
2414
|
+
margin-bottom: 0.5em;
|
|
2415
|
+
}
|
|
2416
|
+
.bms-table__actions__saved-filters[data-v-fb70a13c] {
|
|
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-
|
|
2422
|
+
.bms-table__actions__search[data-v-fb70a13c] {
|
|
2368
2423
|
display: flex;
|
|
2369
2424
|
align-items: center;
|
|
2370
2425
|
gap: 1em;
|
|
2371
2426
|
}
|
|
2372
|
-
.bms-table__actions__custom[data-v-
|
|
2427
|
+
.bms-table__actions__custom[data-v-fb70a13c] {
|
|
2373
2428
|
display: flex;
|
|
2374
2429
|
gap: 1em;
|
|
2375
2430
|
}
|
|
2376
|
-
.bms-table__actions__custom[data-v-
|
|
2431
|
+
.bms-table__actions__custom[data-v-fb70a13c]:empty {
|
|
2377
2432
|
display: none;
|
|
2378
2433
|
}
|
|
2379
|
-
.bms-table__selected[data-v-
|
|
2434
|
+
.bms-table__selected[data-v-fb70a13c] {
|
|
2380
2435
|
margin-bottom: 1em;
|
|
2381
2436
|
}
|
|
2382
|
-
.bms-table__selected .select-mode-all[data-v-
|
|
2437
|
+
.bms-table__selected .select-mode-all[data-v-fb70a13c] {
|
|
2383
2438
|
cursor: pointer;
|
|
2384
2439
|
color: var(--bms-main-100);
|
|
2385
2440
|
}
|
|
2386
|
-
.bms-table__cell__checkbox[data-v-
|
|
2441
|
+
.bms-table__cell__checkbox[data-v-fb70a13c] {
|
|
2387
2442
|
width: 4em;
|
|
2388
2443
|
}
|
|
2389
|
-
.bms-table__cell--action[data-v-
|
|
2444
|
+
.bms-table__cell--action[data-v-fb70a13c] {
|
|
2390
2445
|
display: flex;
|
|
2391
2446
|
justify-content: end;
|
|
2392
2447
|
}
|
|
2393
|
-
.bms-table__cell--empty[data-v-
|
|
2448
|
+
.bms-table__cell--empty[data-v-fb70a13c] {
|
|
2394
2449
|
height: 360px;
|
|
2395
2450
|
}
|
|
2396
|
-
.bms-table__table[data-v-
|
|
2451
|
+
.bms-table__table[data-v-fb70a13c] {
|
|
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-
|
|
2458
|
+
.bms-table__table-wrapper[data-v-fb70a13c] {
|
|
2404
2459
|
position: relative;
|
|
2405
2460
|
}
|
|
2406
|
-
.bms-table__table thead[data-v-
|
|
2461
|
+
.bms-table__table thead[data-v-fb70a13c] {
|
|
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-
|
|
2466
|
+
.bms-table__table--dense[data-v-fb70a13c] {
|
|
2412
2467
|
--table-cell-padding: 0.5em 1em;
|
|
2413
2468
|
}
|
|
2414
|
-
.bms-table__table[data-v-
|
|
2469
|
+
.bms-table__table[data-v-fb70a13c] tr td {
|
|
2415
2470
|
padding: var(--table-cell-padding);
|
|
2416
2471
|
}
|
|
2417
|
-
.bms-table__table th[data-v-
|
|
2472
|
+
.bms-table__table th[data-v-fb70a13c] {
|
|
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-
|
|
2478
|
+
.bms-table__table th.sortable[data-v-fb70a13c]: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-
|
|
2482
|
+
.bms-table__table th.u-text-align-start[data-v-fb70a13c] {
|
|
2428
2483
|
--header-content-justify: start;
|
|
2429
2484
|
}
|
|
2430
|
-
.bms-table__table th.u-text-align-center[data-v-
|
|
2485
|
+
.bms-table__table th.u-text-align-center[data-v-fb70a13c] {
|
|
2431
2486
|
--header-content-justify: center;
|
|
2432
2487
|
}
|
|
2433
|
-
.bms-table__table th.u-text-align-end[data-v-
|
|
2488
|
+
.bms-table__table th.u-text-align-end[data-v-fb70a13c] {
|
|
2434
2489
|
--header-content-justify: end;
|
|
2435
2490
|
}
|
|
2436
|
-
.bms-table__table th.sorted[data-v-
|
|
2491
|
+
.bms-table__table th.sorted[data-v-fb70a13c] {
|
|
2437
2492
|
--header-content-sort-icon-color: var(--bms-grey-100);
|
|
2438
2493
|
}
|
|
2439
|
-
.bms-table__table th .header-content[data-v-
|
|
2494
|
+
.bms-table__table th .header-content[data-v-fb70a13c] {
|
|
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-
|
|
2500
|
+
.bms-table__table th .header-content-sort[data-v-fb70a13c] {
|
|
2446
2501
|
color: var(--header-content-sort-icon-color);
|
|
2447
2502
|
}
|
|
2448
|
-
.bms-table__footer[data-v-
|
|
2503
|
+
.bms-table__footer[data-v-fb70a13c] {
|
|
2449
2504
|
padding-top: 16px;
|
|
2450
2505
|
}
|
|
2451
|
-
.bms-table .blob[data-v-
|
|
2506
|
+
.bms-table .blob[data-v-fb70a13c] {
|
|
2452
2507
|
visibility: hidden;
|
|
2453
2508
|
--table-blob-height: 80px;
|
|
2454
2509
|
}
|
|
2455
|
-
.bms-table .blob.dense[data-v-
|
|
2510
|
+
.bms-table .blob.small[data-v-fb70a13c], .bms-table .blob.dense[data-v-fb70a13c] {
|
|
2456
2511
|
--table-blob-height: 50px;
|
|
2457
2512
|
}
|
|
2458
|
-
.bms-table .blob[data-v-
|
|
2513
|
+
.bms-table .blob[data-v-fb70a13c] {
|
|
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-
|
|
2522
|
+
[data-v-fb70a13c] table {
|
|
2468
2523
|
padding: 0 var(--dynamic-border-height);
|
|
2469
2524
|
}
|
|
2470
|
-
[data-v-
|
|
2525
|
+
[data-v-fb70a13c] table th:first-child {
|
|
2471
2526
|
border-top-left-radius: var(--table-cell-radius);
|
|
2472
2527
|
}
|
|
2473
|
-
[data-v-
|
|
2528
|
+
[data-v-fb70a13c] table th:last-child {
|
|
2474
2529
|
border-top-right-radius: var(--table-cell-radius);
|
|
2475
2530
|
}
|
|
2476
|
-
[data-v-
|
|
2531
|
+
[data-v-fb70a13c] table tr:last-child td:first-child {
|
|
2477
2532
|
border-bottom-left-radius: var(--table-cell-radius);
|
|
2478
2533
|
}
|
|
2479
|
-
[data-v-
|
|
2534
|
+
[data-v-fb70a13c] table tr:last-child td:last-child {
|
|
2480
2535
|
border-bottom-right-radius: var(--table-cell-radius);
|
|
2481
2536
|
}
|
|
2482
|
-
[data-v-
|
|
2537
|
+
[data-v-fb70a13c] table th {
|
|
2483
2538
|
background-color: rgb(255, 255, 255);
|
|
2484
2539
|
}
|
|
2485
|
-
[data-v-
|
|
2540
|
+
[data-v-fb70a13c] table tbody {
|
|
2486
2541
|
overflow: hidden;
|
|
2487
2542
|
background: white;
|
|
2488
2543
|
}
|
|
2489
|
-
[data-v-
|
|
2544
|
+
[data-v-fb70a13c] table tbody tr {
|
|
2490
2545
|
position: relative;
|
|
2491
|
-
}.filter-button-container[data-v-
|
|
2546
|
+
}.filter-button-container[data-v-36a9eb9a] {
|
|
2492
2547
|
position: relative;
|
|
2493
2548
|
}
|
|
2494
|
-
.filter-button-container
|
|
2495
|
-
|
|
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-
|
|
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-
|
|
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-
|
|
2574
|
+
.indicator-scale-leave-active[data-v-36a9eb9a] {
|
|
2518
2575
|
transition: all 0.3s ease;
|
|
2519
2576
|
}
|
|
2520
|
-
.indicator-scale-enter-from[data-v-
|
|
2521
|
-
.indicator-scale-leave-to[data-v-
|
|
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-
|
|
2526
|
-
.indicator-scale-leave-from[data-v-
|
|
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-
|
|
2530
|
-
padding:
|
|
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:
|
|
2591
|
+
margin-bottom: 1em;
|
|
2535
2592
|
}
|
|
2536
|
-
.
|
|
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-
|
|
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-
|
|
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-
|
|
2618
|
+
.filters__inputs .input[data-v-04b66f64] {
|
|
2555
2619
|
width: 25%;
|
|
2556
2620
|
}
|
|
2557
|
-
.filters__inputs .input.large[data-v-
|
|
2621
|
+
.filters__inputs .input.large[data-v-04b66f64] {
|
|
2558
2622
|
width: 50%;
|
|
2559
2623
|
}
|
|
2560
|
-
.filters__inputs .input[data-v-
|
|
2624
|
+
.filters__inputs .input[data-v-04b66f64] {
|
|
2561
2625
|
padding-right: 32px;
|
|
2562
|
-
}.table-search[data-v-
|
|
2626
|
+
}.table-search[data-v-6c7e0faf] {
|
|
2563
2627
|
width: 260px;
|
|
2564
|
-
}.table-search[data-v-
|
|
2628
|
+
}.table-search[data-v-d0834859] {
|
|
2565
2629
|
width: 260px;
|
|
2566
2630
|
}.cocarde[data-v-d1c7b421] {
|
|
2567
2631
|
display: flex;
|