@oliasoft-open-source/react-ui-library 4.18.0-beta-9 → 4.18.0-beta-10

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/README.md CHANGED
@@ -1094,8 +1094,12 @@ The `List` component renders a list of data items with various customization opt
1094
1094
 
1095
1095
  | Prop | Description | Default Value |
1096
1096
  |-----------------------------|-----------------------------------------------------------------------------------------------------------------|--------------------------|
1097
+ | `scrollable` | Determines whether the list is scrollable. | `false` |
1097
1098
  | `hideScrollbar` | Determines whether to hide the scrollbar when scrolling. | `false` |
1098
1099
  | `triggerScrollToActiveItem` | Specifies whether scrolling should be triggered to display the active item. | `false` |
1100
+ | `infiniteScroll` | Specifies whether to enable infinite scroll functionality. | `false` |
1101
+ | `limit` | The limit of items to load per page when using infinite scroll. | `10` |
1102
+ | `infiniteScrollTarget` | The target element for infinite scroll (e.g., the list container). | - |
1099
1103
 
1100
1104
  ### Usage Example
1101
1105
 
@@ -1110,8 +1114,12 @@ The `List` component renders a list of data items with various customization opt
1110
1114
  height={300}
1111
1115
  testId="my-list"
1112
1116
  scrollDetails={{
1117
+ scrollable: true,
1113
1118
  hideScrollbar: true,
1114
1119
  triggerScrollToActiveItem: true,
1120
+ infiniteScroll: true,
1121
+ limit: 10,
1122
+ infiniteScrollTarget: document.getElementById('list-container'),
1115
1123
  }}
1116
1124
  />
1117
1125
  ```
package/dist/global.css CHANGED
@@ -2442,138 +2442,123 @@ html[data-theme='dark'] {
2442
2442
  border-top-left-radius: 0 !important;
2443
2443
  border-bottom-left-radius: 0 !important;
2444
2444
  }
2445
- ._inputInTable_snjei_1 {
2445
+ ._inputInTable_7sjlf_1 {
2446
2446
  background-color: transparent;
2447
2447
  border-radius: inherit !important;
2448
2448
  height: var(--size);
2449
2449
  min-height: 100%;
2450
2450
  }
2451
- ._inputInTable_snjei_1:not(:hover):not([data-error]):not([data-warning]) {
2451
+ ._inputInTable_7sjlf_1:not(:hover):not([data-error]):not([data-warning]) {
2452
2452
  border-color: transparent;
2453
2453
  }
2454
- ._inputInTable_snjei_1:not(:focus) {
2454
+ ._inputInTable_7sjlf_1:not(:focus) {
2455
2455
  box-shadow: none;
2456
2456
  }
2457
- ._inputHover_snjei_13 {
2457
+ ._inputHover_7sjlf_13 {
2458
2458
  position: relative;
2459
2459
  border-color: var(--color-border-hover);
2460
2460
  z-index: 2;
2461
2461
  }
2462
- ._inputFocus_snjei_18 {
2462
+ ._inputFocus_7sjlf_18 {
2463
2463
  position: relative;
2464
2464
  outline: none !important;
2465
2465
  border-color: var(--color-border-focus) !important;
2466
2466
  box-shadow: var(--shadow-focus);
2467
2467
  z-index: 3;
2468
2468
  }
2469
- ._inputError_snjei_25,
2470
- ._inputWarning_snjei_26 {
2469
+ ._inputError_7sjlf_25,
2470
+ ._inputWarning_7sjlf_26 {
2471
2471
  position: relative;
2472
2472
  }
2473
- ._inputError_snjei_25 {
2473
+ ._inputError_7sjlf_25 {
2474
2474
  z-index: 2;
2475
2475
  border-color: var(--color-border-error);
2476
2476
  color: var(--color-text-error) !important;
2477
2477
  background-color: var(--color-background-error-muted);
2478
2478
  }
2479
- ._inputError_snjei_25:hover {
2479
+ ._inputError_7sjlf_25:hover {
2480
2480
  border-color: var(--color-border-error-hover) !important;
2481
2481
  }
2482
- ._inputError_snjei_25:focus {
2482
+ ._inputError_7sjlf_25:focus {
2483
2483
  position: relative;
2484
2484
  outline: none !important;
2485
2485
  border-color: var(--color-border-focus) !important;
2486
2486
  box-shadow: var(--shadow-focus);
2487
2487
  z-index: 3;
2488
2488
  }
2489
- ._inputWarning_snjei_26 {
2489
+ ._inputWarning_7sjlf_26 {
2490
2490
  z-index: 1;
2491
2491
  border-color: var(--color-border-warning);
2492
2492
  color: var(--color-text-warning) !important;
2493
2493
  background-color: var(--color-background-warning-muted);
2494
2494
  }
2495
- ._inputWarning_snjei_26:hover {
2495
+ ._inputWarning_7sjlf_26:hover {
2496
2496
  border-color: var(--color-border-warning-hover) !important;
2497
2497
  }
2498
- ._inputWarning_snjei_26:focus {
2498
+ ._inputWarning_7sjlf_26:focus {
2499
2499
  position: relative;
2500
2500
  outline: none !important;
2501
2501
  border-color: var(--color-border-focus) !important;
2502
2502
  box-shadow: var(--shadow-focus);
2503
2503
  z-index: 3;
2504
2504
  }
2505
- ._inputDisabled_snjei_61 {
2505
+ ._inputDisabled_7sjlf_61 {
2506
2506
  pointer-events: none;
2507
2507
  background-color: var(--color-background-disabled);
2508
2508
  color: var(--color-text-muted);
2509
2509
  box-shadow: none;
2510
2510
  }
2511
- ._hideScrollbars_snjei_67 {
2511
+ ._hideScrollbars_7sjlf_67 {
2512
2512
  /* Firefox */
2513
2513
  scrollbar-width: none;
2514
2514
  /* IE 10+ */
2515
2515
  -ms-overflow-style: none;
2516
2516
  /* Chrome, Safari and Opera */
2517
2517
  }
2518
- ._hideScrollbars_snjei_67::-webkit-scrollbar {
2518
+ ._hideScrollbars_7sjlf_67::-webkit-scrollbar {
2519
2519
  display: none;
2520
2520
  }
2521
- ._list_snjei_77 {
2522
- display: flex;
2523
- flex-direction: column;
2524
- max-height: 100%;
2525
- overflow: hidden;
2526
- }
2527
- ._bordered_snjei_83 {
2528
- border: 1px solid var(--color-border);
2529
- border-radius: var(--border-radius);
2530
- }
2531
- ._bordered_snjei_83 ._virtualRow_snjei_87:last-child ._item_snjei_87 {
2532
- border-bottom: none;
2533
- }
2534
- ._header_snjei_90 ._headerTitle_snjei_90,
2535
- ._heading_snjei_91 ._itemHeader_snjei_91 {
2521
+ ._header_7sjlf_77 ._headerTitle_7sjlf_77,
2522
+ ._heading_7sjlf_78 ._itemHeader_7sjlf_78 {
2536
2523
  transition: opacity 0.3s;
2537
2524
  }
2538
- ._narrow_snjei_94 ._header_snjei_90 ._headerTitle_snjei_90,
2539
- ._narrow_snjei_94 ._heading_snjei_91 ._itemHeader_snjei_91 {
2525
+ ._narrow_7sjlf_81 ._header_7sjlf_77 ._headerTitle_7sjlf_77,
2526
+ ._narrow_7sjlf_81 ._heading_7sjlf_78 ._itemHeader_7sjlf_78 {
2540
2527
  opacity: 0;
2541
2528
  }
2542
- ._stickyHeader_snjei_98 {
2529
+ ._stickyHeader_7sjlf_85 {
2543
2530
  position: sticky;
2544
2531
  top: 0;
2545
2532
  background-color: var(--color-background);
2546
2533
  z-index: 10;
2547
2534
  }
2548
- ._itemHeader_snjei_91 {
2535
+ ._itemHeader_7sjlf_78 {
2549
2536
  padding: var(--padding-xs) var(--padding);
2550
2537
  display: flex;
2551
2538
  align-items: flex-start;
2552
2539
  }
2553
- ._itemHeader_snjei_91 ._title_snjei_109 {
2540
+ ._itemHeader_7sjlf_78 ._title_7sjlf_96 {
2554
2541
  margin: 0;
2555
2542
  padding: 0;
2556
2543
  flex-grow: 1;
2557
2544
  min-width: 0;
2558
2545
  }
2559
- ._itemHeader_snjei_91 ._name_snjei_115 {
2546
+ ._itemHeader_7sjlf_78 ._name_7sjlf_102 {
2560
2547
  font-weight: 400;
2561
2548
  }
2562
- ._itemHeader_snjei_91 ._iconTooltipMargin_snjei_118 {
2549
+ ._itemHeader_7sjlf_78 ._iconTooltipMargin_7sjlf_105 {
2563
2550
  margin-left: var(--padding-xs);
2564
2551
  }
2565
- ._itemHeader_snjei_91 ._bold_snjei_121 {
2552
+ ._itemHeader_7sjlf_78 ._bold_7sjlf_108 {
2566
2553
  font-weight: bold;
2567
2554
  }
2568
- ._header_snjei_90 {
2555
+ ._header_7sjlf_77 {
2569
2556
  padding: var(--padding);
2570
2557
  display: flex;
2571
2558
  align-items: center;
2572
2559
  border-bottom: 1px solid var(--color-border);
2573
- position: sticky;
2574
- top: 0;
2575
2560
  }
2576
- ._toggleNarrow_snjei_132 {
2561
+ ._toggleNarrow_7sjlf_117 {
2577
2562
  margin-right: 16px;
2578
2563
  margin-left: -5px;
2579
2564
  color: #c8c8c8;
@@ -2582,16 +2567,16 @@ html[data-theme='dark'] {
2582
2567
  width: 22px;
2583
2568
  justify-content: center;
2584
2569
  }
2585
- ._toggleNarrow_snjei_132:hover {
2570
+ ._toggleNarrow_7sjlf_117:hover {
2586
2571
  color: var(--color-text-primary-hover);
2587
2572
  }
2588
- ._toggleNarrow_snjei_132:active {
2573
+ ._toggleNarrow_7sjlf_117:active {
2589
2574
  color: var(--color-text-primary-active);
2590
2575
  }
2591
- ._narrow_snjei_94 ._toggleNarrow_snjei_132 {
2576
+ ._narrow_7sjlf_81 ._toggleNarrow_7sjlf_117 {
2592
2577
  transform: scaleX(-1);
2593
2578
  }
2594
- ._drag_snjei_150 {
2579
+ ._drag_7sjlf_135 {
2595
2580
  color: var(--color-text-faint);
2596
2581
  display: flex;
2597
2582
  align-items: center;
@@ -2605,24 +2590,34 @@ html[data-theme='dark'] {
2605
2590
  width: var(--size-sm);
2606
2591
  flex-shrink: 0;
2607
2592
  }
2608
- ._drag_snjei_150:hover {
2593
+ ._drag_7sjlf_135:hover {
2609
2594
  color: var(--color-text-primary-hover);
2610
2595
  }
2611
- ._drag_snjei_150:active {
2596
+ ._drag_7sjlf_135:active {
2612
2597
  cursor: grabbing;
2613
2598
  color: var(--color-text-primary-active);
2614
2599
  }
2615
- ._dragOverlay_snjei_171 {
2600
+ ._dragOverlay_7sjlf_156 {
2616
2601
  box-shadow: var(--shadow-layer);
2617
2602
  border-radius: var(--border-radius);
2618
2603
  overflow: hidden;
2619
2604
  }
2620
- ._listContent_snjei_176 {
2621
- flex: 1;
2622
- overflow-y: auto;
2605
+ ._list_7sjlf_161 {
2606
+ flex-shrink: 0;
2623
2607
  background: var(--color-background);
2624
2608
  }
2625
- ._item_snjei_87 {
2609
+ ._list_7sjlf_161._bordered_7sjlf_165:first-child,
2610
+ ._list_7sjlf_161._bordered_7sjlf_165:first-child > :first-child {
2611
+ border-top-left-radius: inherit;
2612
+ border-top-right-radius: inherit;
2613
+ }
2614
+ ._list_7sjlf_161._bordered_7sjlf_165:last-child,
2615
+ ._list_7sjlf_161._bordered_7sjlf_165:last-child > :last-child {
2616
+ border-bottom-left-radius: inherit;
2617
+ border-bottom-right-radius: inherit;
2618
+ border-bottom: 0;
2619
+ }
2620
+ ._item_7sjlf_78 {
2626
2621
  color: inherit;
2627
2622
  display: block;
2628
2623
  transition: background-color 0.2s;
@@ -2633,7 +2628,7 @@ html[data-theme='dark'] {
2633
2628
  overflow-wrap: break-word;
2634
2629
  hyphens: auto;
2635
2630
  }
2636
- ._item_snjei_87:not(._heading_snjei_91):after {
2631
+ ._item_7sjlf_78:not(._heading_7sjlf_78):after {
2637
2632
  content: '';
2638
2633
  position: absolute;
2639
2634
  left: 0;
@@ -2644,41 +2639,41 @@ html[data-theme='dark'] {
2644
2639
  border-bottom-left-radius: inherit;
2645
2640
  transition: background 0.3s, width 0.3s;
2646
2641
  }
2647
- ._item_snjei_87._action_snjei_203 {
2642
+ ._item_7sjlf_78._action_7sjlf_198 {
2648
2643
  cursor: pointer;
2649
2644
  }
2650
- ._item_snjei_87._action_snjei_203:not(._active_snjei_206):hover {
2645
+ ._item_7sjlf_78._action_7sjlf_198:not(._active_7sjlf_201):hover {
2651
2646
  background: var(--color-background-listitem-hover);
2652
2647
  }
2653
- ._item_snjei_87._action_snjei_203:not(._active_snjei_206):hover:after {
2648
+ ._item_7sjlf_78._action_7sjlf_198:not(._active_7sjlf_201):hover:after {
2654
2649
  width: 5px;
2655
2650
  background: rgba(0, 0, 0, 0.1);
2656
2651
  }
2657
- ._item_snjei_87._indented_snjei_213:after {
2652
+ ._item_7sjlf_78._indented_7sjlf_208:after {
2658
2653
  width: 3px;
2659
2654
  background: rgba(0, 0, 0, 0.1);
2660
2655
  }
2661
- ._item_snjei_87._active_snjei_206 {
2656
+ ._item_7sjlf_78._active_7sjlf_201 {
2662
2657
  cursor: default;
2663
2658
  position: relative;
2664
2659
  z-index: 1;
2665
2660
  background: var(--color-background-listitem-active);
2666
2661
  }
2667
- ._item_snjei_87._active_snjei_206:after {
2662
+ ._item_7sjlf_78._active_7sjlf_201:after {
2668
2663
  background: var(--color-background-primary) !important;
2669
2664
  }
2670
- ._item_snjei_87._disabled_snjei_226 {
2665
+ ._item_7sjlf_78._disabled_7sjlf_221 {
2671
2666
  color: var(--color-text-faint);
2672
2667
  pointer-events: none;
2673
2668
  }
2674
- ._item_snjei_87._heading_snjei_91 {
2669
+ ._item_7sjlf_78._heading_7sjlf_78 {
2675
2670
  color: var(--color-text-muted);
2676
2671
  background-color: var(--color-background-cardheader);
2677
2672
  }
2678
- ._item_snjei_87._heading_snjei_91._action_snjei_203:hover {
2673
+ ._item_7sjlf_78._heading_7sjlf_78._action_7sjlf_198:hover {
2679
2674
  color: var(--color-text-primary-hover);
2680
2675
  }
2681
- ._item_snjei_87 ._label_snjei_237 {
2676
+ ._item_7sjlf_78 ._label_7sjlf_232 {
2682
2677
  margin-right: var(--padding-xs);
2683
2678
  flex-shrink: 0;
2684
2679
  width: var(--size-sm);
@@ -2689,38 +2684,38 @@ html[data-theme='dark'] {
2689
2684
  align-items: center;
2690
2685
  justify-content: center;
2691
2686
  }
2692
- ._item_snjei_87 ._details_snjei_248,
2693
- ._item_snjei_87 ._metadata_snjei_249 {
2687
+ ._item_7sjlf_78 ._details_7sjlf_243,
2688
+ ._item_7sjlf_78 ._metadata_7sjlf_244 {
2694
2689
  display: block;
2695
2690
  width: 100%;
2696
2691
  font-weight: normal;
2697
2692
  }
2698
- ._item_snjei_87 ._metadata_snjei_249 {
2693
+ ._item_7sjlf_78 ._metadata_7sjlf_244 {
2699
2694
  color: var(--color-text-muted);
2700
2695
  }
2701
- ._item_snjei_87 ._itemContent_snjei_257 {
2696
+ ._item_7sjlf_78 ._itemContent_7sjlf_252 {
2702
2697
  padding: 0 var(--padding) var(--padding-sm);
2703
2698
  cursor: auto;
2704
2699
  }
2705
- ._item_snjei_87 ._itemContent_snjei_257:empty {
2700
+ ._item_7sjlf_78 ._itemContent_7sjlf_252:empty {
2706
2701
  padding: inherit;
2707
2702
  }
2708
- ._indentIcon_snjei_264 {
2703
+ ._indentIcon_7sjlf_259 {
2709
2704
  color: var(--color-text-faint);
2710
2705
  flex-shrink: 0;
2711
2706
  margin-right: var(--padding-xxs);
2712
2707
  }
2713
- ._expandIcon_snjei_269 {
2708
+ ._expandIcon_7sjlf_264 {
2714
2709
  flex-shrink: 0;
2715
2710
  position: relative;
2716
2711
  display: flex;
2717
2712
  height: var(--line-height);
2718
2713
  margin-right: var(--padding-xs);
2719
2714
  }
2720
- ._expandIcon_snjei_269._expanded_snjei_276 svg {
2715
+ ._expandIcon_7sjlf_264._expanded_7sjlf_271 svg {
2721
2716
  transform: rotate(90deg);
2722
2717
  }
2723
- ._right_snjei_279 {
2718
+ ._right_7sjlf_274 {
2724
2719
  margin-left: auto;
2725
2720
  display: flex;
2726
2721
  align-items: center;
@@ -2728,33 +2723,35 @@ html[data-theme='dark'] {
2728
2723
  margin-bottom: calc((var(--line-height) - var(--size-sm)) / 2);
2729
2724
  min-height: var(--size-sm);
2730
2725
  }
2731
- ._actions_snjei_287 {
2726
+ ._actions_7sjlf_282 {
2732
2727
  margin-left: var(--padding-xs);
2733
2728
  display: flex;
2734
2729
  align-items: center;
2735
2730
  }
2736
- ._hideScrollbar_snjei_67 {
2731
+ ._scrollableList_7sjlf_287 {
2732
+ height: 100%;
2733
+ overflow-y: auto;
2734
+ scroll-behavior: smooth;
2735
+ }
2736
+ ._infiniteScrollContainer_7sjlf_292 {
2737
+ overflow: hidden !important;
2738
+ }
2739
+ ._hideScrollbar_7sjlf_67 {
2737
2740
  /* Firefox */
2738
2741
  scrollbar-width: none;
2739
2742
  /* IE 10+ */
2740
2743
  -ms-overflow-style: none;
2741
2744
  /* Chrome, Safari and Opera */
2742
2745
  }
2743
- ._hideScrollbar_snjei_67::-webkit-scrollbar {
2746
+ ._hideScrollbar_7sjlf_67::-webkit-scrollbar {
2744
2747
  display: none;
2745
2748
  }
2746
- ._noPointerEvents_snjei_302 {
2747
- pointer-events: none;
2748
- }
2749
- ._virtualRows_snjei_305 {
2750
- width: 100%;
2751
- position: relative;
2749
+ ._bordered_7sjlf_165 {
2750
+ box-shadow: inset 0px 0px 0px 2px var(--color-background-primary);
2751
+ background: var(--color-background-listitem-active);
2752
2752
  }
2753
- ._virtualRow_snjei_87 {
2754
- position: absolute;
2755
- top: 0;
2756
- left: 0;
2757
- width: 100%;
2753
+ ._noPointerEvents_7sjlf_309 {
2754
+ pointer-events: none;
2758
2755
  }
2759
2756
  ._loader_477i5_1 {
2760
2757
  width: 100%;
@@ -9140,80 +9137,80 @@ button:active .remirror-menu-pane-shortcut,
9140
9137
  width: 8px;
9141
9138
  height: 14px;
9142
9139
  }
9143
- ._inputInTable_xkoxm_1 {
9140
+ ._inputInTable_xzacf_1 {
9144
9141
  background-color: transparent;
9145
9142
  border-radius: inherit !important;
9146
9143
  height: var(--size);
9147
9144
  min-height: 100%;
9148
9145
  }
9149
- ._inputInTable_xkoxm_1:not(:hover):not([data-error]):not([data-warning]) {
9146
+ ._inputInTable_xzacf_1:not(:hover):not([data-error]):not([data-warning]) {
9150
9147
  border-color: transparent;
9151
9148
  }
9152
- ._inputInTable_xkoxm_1:not(:focus) {
9149
+ ._inputInTable_xzacf_1:not(:focus) {
9153
9150
  box-shadow: none;
9154
9151
  }
9155
- ._inputHover_xkoxm_13 {
9152
+ ._inputHover_xzacf_13 {
9156
9153
  position: relative;
9157
9154
  border-color: var(--color-border-hover);
9158
9155
  z-index: 2;
9159
9156
  }
9160
- ._inputFocus_xkoxm_18 {
9157
+ ._inputFocus_xzacf_18 {
9161
9158
  position: relative;
9162
9159
  outline: none !important;
9163
9160
  border-color: var(--color-border-focus) !important;
9164
9161
  box-shadow: var(--shadow-focus);
9165
9162
  z-index: 3;
9166
9163
  }
9167
- ._inputError_xkoxm_25,
9168
- ._inputWarning_xkoxm_26 {
9164
+ ._inputError_xzacf_25,
9165
+ ._inputWarning_xzacf_26 {
9169
9166
  position: relative;
9170
9167
  }
9171
- ._inputError_xkoxm_25 {
9168
+ ._inputError_xzacf_25 {
9172
9169
  z-index: 2;
9173
9170
  border-color: var(--color-border-error);
9174
9171
  color: var(--color-text-error) !important;
9175
9172
  background-color: var(--color-background-error-muted);
9176
9173
  }
9177
- ._inputError_xkoxm_25:hover {
9174
+ ._inputError_xzacf_25:hover {
9178
9175
  border-color: var(--color-border-error-hover) !important;
9179
9176
  }
9180
- ._inputError_xkoxm_25:focus {
9177
+ ._inputError_xzacf_25:focus {
9181
9178
  position: relative;
9182
9179
  outline: none !important;
9183
9180
  border-color: var(--color-border-focus) !important;
9184
9181
  box-shadow: var(--shadow-focus);
9185
9182
  z-index: 3;
9186
9183
  }
9187
- ._inputWarning_xkoxm_26 {
9184
+ ._inputWarning_xzacf_26 {
9188
9185
  z-index: 1;
9189
9186
  border-color: var(--color-border-warning);
9190
9187
  color: var(--color-text-warning) !important;
9191
9188
  background-color: var(--color-background-warning-muted);
9192
9189
  }
9193
- ._inputWarning_xkoxm_26:hover {
9190
+ ._inputWarning_xzacf_26:hover {
9194
9191
  border-color: var(--color-border-warning-hover) !important;
9195
9192
  }
9196
- ._inputWarning_xkoxm_26:focus {
9193
+ ._inputWarning_xzacf_26:focus {
9197
9194
  position: relative;
9198
9195
  outline: none !important;
9199
9196
  border-color: var(--color-border-focus) !important;
9200
9197
  box-shadow: var(--shadow-focus);
9201
9198
  z-index: 3;
9202
9199
  }
9203
- ._inputDisabled_xkoxm_61 {
9200
+ ._inputDisabled_xzacf_61 {
9204
9201
  pointer-events: none;
9205
9202
  background-color: var(--color-background-disabled);
9206
9203
  color: var(--color-text-muted);
9207
9204
  box-shadow: none;
9208
9205
  }
9209
- ._hideScrollbars_xkoxm_67 {
9206
+ ._hideScrollbars_xzacf_67 {
9210
9207
  /* Firefox */
9211
9208
  scrollbar-width: none;
9212
9209
  /* IE 10+ */
9213
9210
  -ms-overflow-style: none;
9214
9211
  /* Chrome, Safari and Opera */
9215
9212
  }
9216
- ._hideScrollbars_xkoxm_67::-webkit-scrollbar {
9213
+ ._hideScrollbars_xzacf_67::-webkit-scrollbar {
9217
9214
  display: none;
9218
9215
  }
9219
9216
  :root {
@@ -9224,7 +9221,7 @@ html[data-theme='dark'] {
9224
9221
  --color-background-table-header: var(--color-neutral-800);
9225
9222
  --color-background-table-row-tinted: var(--color-neutral-800);
9226
9223
  }
9227
- ._wrapper_xkoxm_85 {
9224
+ ._wrapper_xzacf_85 {
9228
9225
  border-radius: inherit;
9229
9226
  max-height: 100%;
9230
9227
  max-width: 100%;
@@ -9232,23 +9229,23 @@ html[data-theme='dark'] {
9232
9229
  flex-direction: column;
9233
9230
  overflow: hidden;
9234
9231
  }
9235
- ._wrapper_xkoxm_85._bordered_xkoxm_93 {
9232
+ ._wrapper_xzacf_85._bordered_xzacf_93 {
9236
9233
  border-radius: var(--border-radius);
9237
9234
  border: 1px solid var(--color-border);
9238
9235
  box-shadow: var(--shadow-card);
9239
9236
  }
9240
- ._scroll_xkoxm_98 {
9241
- background: var(--color-background);
9237
+ ._scroll_xzacf_98 {
9242
9238
  overflow-y: auto;
9243
9239
  border-radius: inherit;
9244
9240
  flex: 1;
9245
9241
  min-height: 0;
9246
9242
  }
9247
- ._scroll_xkoxm_98:not(:first-child) {
9243
+ ._scroll_xzacf_98:not(:first-child) {
9248
9244
  border-top-left-radius: 0;
9249
9245
  border-top-right-radius: 0;
9250
9246
  }
9251
- ._table_xkoxm_109 {
9247
+ ._table_xzacf_108 {
9248
+ background: var(--color-background-raised);
9252
9249
  color: var(--color-text);
9253
9250
  border-collapse: separate;
9254
9251
  border-spacing: 0;
@@ -9256,39 +9253,38 @@ html[data-theme='dark'] {
9256
9253
  width: 100%;
9257
9254
  font-variant-numeric: tabular-nums;
9258
9255
  }
9259
- ._table_xkoxm_109 > :first-child {
9256
+ ._table_xzacf_108 > :first-child {
9260
9257
  border-top-left-radius: inherit;
9261
9258
  border-top-right-radius: inherit;
9262
9259
  }
9263
- ._table_xkoxm_109 > :first-child > :first-child {
9260
+ ._table_xzacf_108 > :first-child > :first-child {
9264
9261
  border-top-left-radius: inherit;
9265
9262
  border-top-right-radius: inherit;
9266
9263
  }
9267
- ._table_xkoxm_109 > :first-child > :first-child > :first-child {
9264
+ ._table_xzacf_108 > :first-child > :first-child > :first-child {
9268
9265
  border-top-left-radius: inherit;
9269
9266
  }
9270
- ._table_xkoxm_109 > :first-child > :first-child > :last-child {
9267
+ ._table_xzacf_108 > :first-child > :first-child > :last-child {
9271
9268
  border-top-right-radius: inherit;
9272
9269
  }
9273
- ._table_xkoxm_109 > :last-child {
9270
+ ._table_xzacf_108 > :last-child {
9274
9271
  border-bottom-left-radius: inherit;
9275
9272
  border-bottom-right-radius: inherit;
9276
9273
  }
9277
- ._table_xkoxm_109 > :last-child > :last-child {
9274
+ ._table_xzacf_108 > :last-child > :last-child {
9278
9275
  border-bottom-left-radius: inherit;
9279
9276
  border-bottom-right-radius: inherit;
9280
9277
  }
9281
- ._table_xkoxm_109 > :last-child > :last-child > :first-child {
9278
+ ._table_xzacf_108 > :last-child > :last-child > :first-child {
9282
9279
  border-bottom-left-radius: inherit;
9283
9280
  }
9284
- ._table_xkoxm_109 > :last-child > :last-child > :last-child {
9281
+ ._table_xzacf_108 > :last-child > :last-child > :last-child {
9285
9282
  border-bottom-right-radius: inherit;
9286
9283
  }
9287
- ._dragOverlay_xkoxm_145 {
9284
+ ._dragOverlay_xzacf_145 {
9288
9285
  box-shadow: var(--shadow-layer);
9289
9286
  border-radius: var(--border-radius);
9290
9287
  overflow: hidden;
9291
- position: fixed;
9292
9288
  }
9293
9289
  th,
9294
9290
  td {
@@ -9303,10 +9299,10 @@ th:not(:first-child),
9303
9299
  td:not(:first-child) {
9304
9300
  border-left-width: 1px;
9305
9301
  }
9306
- ._table_xkoxm_109 > *:not(:last-child) > tr th,
9307
- ._table_xkoxm_109 > *:not(:last-child) > tr td,
9308
- ._table_xkoxm_109 > *:last-child > tr:not(:last-child) th,
9309
- ._table_xkoxm_109 > *:last-child > tr:not(:last-child) td {
9302
+ ._table_xzacf_108 > *:not(:last-child) > tr th,
9303
+ ._table_xzacf_108 > *:not(:last-child) > tr td,
9304
+ ._table_xzacf_108 > *:last-child > tr:not(:last-child) th,
9305
+ ._table_xzacf_108 > *:last-child > tr:not(:last-child) td {
9310
9306
  border-bottom-width: 1px;
9311
9307
  }
9312
9308
  @-moz-document url-prefix() {
@@ -9329,23 +9325,14 @@ thead tr {
9329
9325
  }
9330
9326
  tbody {
9331
9327
  overflow: hidden;
9328
+ background-color: var(--color-background);
9332
9329
  }
9333
9330
  tbody tr {
9334
9331
  background-color: var(--color-background-raised);
9335
9332
  }
9336
- ._striped_xkoxm_194 tbody [data-even='true'] {
9333
+ ._striped_xzacf_194 tbody tr:nth-child(even) {
9337
9334
  background-color: var(--color-background-table-row-tinted);
9338
9335
  }
9339
- tbody:before {
9340
- display: block;
9341
- padding-top: var(--virtualPaddingTop);
9342
- content: '';
9343
- }
9344
- tbody:after {
9345
- display: block;
9346
- padding-bottom: var(--virtualPaddingBottom);
9347
- content: '';
9348
- }
9349
9336
  ._title_zn5s7_1 {
9350
9337
  background-color: var(--color-background-cardheader);
9351
9338
  border-bottom: 1px solid var(--color-border);