@oliasoft-open-source/react-ui-library 4.18.0-beta-13 → 4.18.1-beta-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.
- package/README.md +8 -0
- package/dist/global.css +122 -136
- package/dist/index.d.ts +37 -26
- package/dist/index.js +770 -1158
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
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,139 +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
|
-
.
|
|
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
|
-
.
|
|
2451
|
+
._inputInTable_7sjlf_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
2452
2452
|
border-color: transparent;
|
|
2453
2453
|
}
|
|
2454
|
-
.
|
|
2454
|
+
._inputInTable_7sjlf_1:not(:focus) {
|
|
2455
2455
|
box-shadow: none;
|
|
2456
2456
|
}
|
|
2457
|
-
.
|
|
2457
|
+
._inputHover_7sjlf_13 {
|
|
2458
2458
|
position: relative;
|
|
2459
2459
|
border-color: var(--color-border-hover);
|
|
2460
2460
|
z-index: 2;
|
|
2461
2461
|
}
|
|
2462
|
-
.
|
|
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
|
-
.
|
|
2470
|
-
.
|
|
2469
|
+
._inputError_7sjlf_25,
|
|
2470
|
+
._inputWarning_7sjlf_26 {
|
|
2471
2471
|
position: relative;
|
|
2472
2472
|
}
|
|
2473
|
-
.
|
|
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
|
-
.
|
|
2479
|
+
._inputError_7sjlf_25:hover {
|
|
2480
2480
|
border-color: var(--color-border-error-hover) !important;
|
|
2481
2481
|
}
|
|
2482
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
2495
|
+
._inputWarning_7sjlf_26:hover {
|
|
2496
2496
|
border-color: var(--color-border-warning-hover) !important;
|
|
2497
2497
|
}
|
|
2498
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
2518
|
+
._hideScrollbars_7sjlf_67::-webkit-scrollbar {
|
|
2519
2519
|
display: none;
|
|
2520
2520
|
}
|
|
2521
|
-
.
|
|
2522
|
-
|
|
2523
|
-
flex-direction: column;
|
|
2524
|
-
max-height: 100%;
|
|
2525
|
-
overflow: hidden;
|
|
2526
|
-
}
|
|
2527
|
-
._bordered_4cdnv_83 {
|
|
2528
|
-
border: 1px solid var(--color-border);
|
|
2529
|
-
border-radius: var(--border-radius);
|
|
2530
|
-
}
|
|
2531
|
-
._bordered_4cdnv_83 ._virtualRow_4cdnv_87:last-child ._item_4cdnv_87 {
|
|
2532
|
-
border-bottom: none;
|
|
2533
|
-
}
|
|
2534
|
-
._header_4cdnv_90 ._headerTitle_4cdnv_90,
|
|
2535
|
-
._heading_4cdnv_91 ._itemHeader_4cdnv_91 {
|
|
2521
|
+
._header_7sjlf_77 ._headerTitle_7sjlf_77,
|
|
2522
|
+
._heading_7sjlf_78 ._itemHeader_7sjlf_78 {
|
|
2536
2523
|
transition: opacity 0.3s;
|
|
2537
2524
|
}
|
|
2538
|
-
.
|
|
2539
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
2546
|
+
._itemHeader_7sjlf_78 ._name_7sjlf_102 {
|
|
2560
2547
|
font-weight: 400;
|
|
2561
|
-
display: block;
|
|
2562
2548
|
}
|
|
2563
|
-
.
|
|
2549
|
+
._itemHeader_7sjlf_78 ._iconTooltipMargin_7sjlf_105 {
|
|
2564
2550
|
margin-left: var(--padding-xs);
|
|
2565
2551
|
}
|
|
2566
|
-
.
|
|
2552
|
+
._itemHeader_7sjlf_78 ._bold_7sjlf_108 {
|
|
2567
2553
|
font-weight: bold;
|
|
2568
2554
|
}
|
|
2569
|
-
.
|
|
2555
|
+
._header_7sjlf_77 {
|
|
2570
2556
|
padding: var(--padding);
|
|
2571
2557
|
display: flex;
|
|
2572
2558
|
align-items: center;
|
|
2573
2559
|
border-bottom: 1px solid var(--color-border);
|
|
2574
|
-
position: sticky;
|
|
2575
|
-
top: 0;
|
|
2576
2560
|
}
|
|
2577
|
-
.
|
|
2561
|
+
._toggleNarrow_7sjlf_117 {
|
|
2578
2562
|
margin-right: 16px;
|
|
2579
2563
|
margin-left: -5px;
|
|
2580
2564
|
color: #c8c8c8;
|
|
@@ -2583,16 +2567,16 @@ html[data-theme='dark'] {
|
|
|
2583
2567
|
width: 22px;
|
|
2584
2568
|
justify-content: center;
|
|
2585
2569
|
}
|
|
2586
|
-
.
|
|
2570
|
+
._toggleNarrow_7sjlf_117:hover {
|
|
2587
2571
|
color: var(--color-text-primary-hover);
|
|
2588
2572
|
}
|
|
2589
|
-
.
|
|
2573
|
+
._toggleNarrow_7sjlf_117:active {
|
|
2590
2574
|
color: var(--color-text-primary-active);
|
|
2591
2575
|
}
|
|
2592
|
-
.
|
|
2576
|
+
._narrow_7sjlf_81 ._toggleNarrow_7sjlf_117 {
|
|
2593
2577
|
transform: scaleX(-1);
|
|
2594
2578
|
}
|
|
2595
|
-
.
|
|
2579
|
+
._drag_7sjlf_135 {
|
|
2596
2580
|
color: var(--color-text-faint);
|
|
2597
2581
|
display: flex;
|
|
2598
2582
|
align-items: center;
|
|
@@ -2606,24 +2590,34 @@ html[data-theme='dark'] {
|
|
|
2606
2590
|
width: var(--size-sm);
|
|
2607
2591
|
flex-shrink: 0;
|
|
2608
2592
|
}
|
|
2609
|
-
.
|
|
2593
|
+
._drag_7sjlf_135:hover {
|
|
2610
2594
|
color: var(--color-text-primary-hover);
|
|
2611
2595
|
}
|
|
2612
|
-
.
|
|
2596
|
+
._drag_7sjlf_135:active {
|
|
2613
2597
|
cursor: grabbing;
|
|
2614
2598
|
color: var(--color-text-primary-active);
|
|
2615
2599
|
}
|
|
2616
|
-
.
|
|
2600
|
+
._dragOverlay_7sjlf_156 {
|
|
2617
2601
|
box-shadow: var(--shadow-layer);
|
|
2618
2602
|
border-radius: var(--border-radius);
|
|
2619
2603
|
overflow: hidden;
|
|
2620
2604
|
}
|
|
2621
|
-
.
|
|
2622
|
-
flex:
|
|
2623
|
-
overflow-y: auto;
|
|
2605
|
+
._list_7sjlf_161 {
|
|
2606
|
+
flex-shrink: 0;
|
|
2624
2607
|
background: var(--color-background);
|
|
2625
2608
|
}
|
|
2626
|
-
.
|
|
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 {
|
|
2627
2621
|
color: inherit;
|
|
2628
2622
|
display: block;
|
|
2629
2623
|
transition: background-color 0.2s;
|
|
@@ -2634,7 +2628,7 @@ html[data-theme='dark'] {
|
|
|
2634
2628
|
overflow-wrap: break-word;
|
|
2635
2629
|
hyphens: auto;
|
|
2636
2630
|
}
|
|
2637
|
-
.
|
|
2631
|
+
._item_7sjlf_78:not(._heading_7sjlf_78):after {
|
|
2638
2632
|
content: '';
|
|
2639
2633
|
position: absolute;
|
|
2640
2634
|
left: 0;
|
|
@@ -2645,41 +2639,41 @@ html[data-theme='dark'] {
|
|
|
2645
2639
|
border-bottom-left-radius: inherit;
|
|
2646
2640
|
transition: background 0.3s, width 0.3s;
|
|
2647
2641
|
}
|
|
2648
|
-
.
|
|
2642
|
+
._item_7sjlf_78._action_7sjlf_198 {
|
|
2649
2643
|
cursor: pointer;
|
|
2650
2644
|
}
|
|
2651
|
-
.
|
|
2645
|
+
._item_7sjlf_78._action_7sjlf_198:not(._active_7sjlf_201):hover {
|
|
2652
2646
|
background: var(--color-background-listitem-hover);
|
|
2653
2647
|
}
|
|
2654
|
-
.
|
|
2648
|
+
._item_7sjlf_78._action_7sjlf_198:not(._active_7sjlf_201):hover:after {
|
|
2655
2649
|
width: 5px;
|
|
2656
2650
|
background: rgba(0, 0, 0, 0.1);
|
|
2657
2651
|
}
|
|
2658
|
-
.
|
|
2652
|
+
._item_7sjlf_78._indented_7sjlf_208:after {
|
|
2659
2653
|
width: 3px;
|
|
2660
2654
|
background: rgba(0, 0, 0, 0.1);
|
|
2661
2655
|
}
|
|
2662
|
-
.
|
|
2656
|
+
._item_7sjlf_78._active_7sjlf_201 {
|
|
2663
2657
|
cursor: default;
|
|
2664
2658
|
position: relative;
|
|
2665
2659
|
z-index: 1;
|
|
2666
2660
|
background: var(--color-background-listitem-active);
|
|
2667
2661
|
}
|
|
2668
|
-
.
|
|
2662
|
+
._item_7sjlf_78._active_7sjlf_201:after {
|
|
2669
2663
|
background: var(--color-background-primary) !important;
|
|
2670
2664
|
}
|
|
2671
|
-
.
|
|
2665
|
+
._item_7sjlf_78._disabled_7sjlf_221 {
|
|
2672
2666
|
color: var(--color-text-faint);
|
|
2673
2667
|
pointer-events: none;
|
|
2674
2668
|
}
|
|
2675
|
-
.
|
|
2669
|
+
._item_7sjlf_78._heading_7sjlf_78 {
|
|
2676
2670
|
color: var(--color-text-muted);
|
|
2677
2671
|
background-color: var(--color-background-cardheader);
|
|
2678
2672
|
}
|
|
2679
|
-
.
|
|
2673
|
+
._item_7sjlf_78._heading_7sjlf_78._action_7sjlf_198:hover {
|
|
2680
2674
|
color: var(--color-text-primary-hover);
|
|
2681
2675
|
}
|
|
2682
|
-
.
|
|
2676
|
+
._item_7sjlf_78 ._label_7sjlf_232 {
|
|
2683
2677
|
margin-right: var(--padding-xs);
|
|
2684
2678
|
flex-shrink: 0;
|
|
2685
2679
|
width: var(--size-sm);
|
|
@@ -2690,38 +2684,38 @@ html[data-theme='dark'] {
|
|
|
2690
2684
|
align-items: center;
|
|
2691
2685
|
justify-content: center;
|
|
2692
2686
|
}
|
|
2693
|
-
.
|
|
2694
|
-
.
|
|
2687
|
+
._item_7sjlf_78 ._details_7sjlf_243,
|
|
2688
|
+
._item_7sjlf_78 ._metadata_7sjlf_244 {
|
|
2695
2689
|
display: block;
|
|
2696
2690
|
width: 100%;
|
|
2697
2691
|
font-weight: normal;
|
|
2698
2692
|
}
|
|
2699
|
-
.
|
|
2693
|
+
._item_7sjlf_78 ._metadata_7sjlf_244 {
|
|
2700
2694
|
color: var(--color-text-muted);
|
|
2701
2695
|
}
|
|
2702
|
-
.
|
|
2696
|
+
._item_7sjlf_78 ._itemContent_7sjlf_252 {
|
|
2703
2697
|
padding: 0 var(--padding) var(--padding-sm);
|
|
2704
2698
|
cursor: auto;
|
|
2705
2699
|
}
|
|
2706
|
-
.
|
|
2700
|
+
._item_7sjlf_78 ._itemContent_7sjlf_252:empty {
|
|
2707
2701
|
padding: inherit;
|
|
2708
2702
|
}
|
|
2709
|
-
.
|
|
2703
|
+
._indentIcon_7sjlf_259 {
|
|
2710
2704
|
color: var(--color-text-faint);
|
|
2711
2705
|
flex-shrink: 0;
|
|
2712
2706
|
margin-right: var(--padding-xxs);
|
|
2713
2707
|
}
|
|
2714
|
-
.
|
|
2708
|
+
._expandIcon_7sjlf_264 {
|
|
2715
2709
|
flex-shrink: 0;
|
|
2716
2710
|
position: relative;
|
|
2717
2711
|
display: flex;
|
|
2718
2712
|
height: var(--line-height);
|
|
2719
2713
|
margin-right: var(--padding-xs);
|
|
2720
2714
|
}
|
|
2721
|
-
.
|
|
2715
|
+
._expandIcon_7sjlf_264._expanded_7sjlf_271 svg {
|
|
2722
2716
|
transform: rotate(90deg);
|
|
2723
2717
|
}
|
|
2724
|
-
.
|
|
2718
|
+
._right_7sjlf_274 {
|
|
2725
2719
|
margin-left: auto;
|
|
2726
2720
|
display: flex;
|
|
2727
2721
|
align-items: center;
|
|
@@ -2729,33 +2723,35 @@ html[data-theme='dark'] {
|
|
|
2729
2723
|
margin-bottom: calc((var(--line-height) - var(--size-sm)) / 2);
|
|
2730
2724
|
min-height: var(--size-sm);
|
|
2731
2725
|
}
|
|
2732
|
-
.
|
|
2726
|
+
._actions_7sjlf_282 {
|
|
2733
2727
|
margin-left: var(--padding-xs);
|
|
2734
2728
|
display: flex;
|
|
2735
2729
|
align-items: center;
|
|
2736
2730
|
}
|
|
2737
|
-
.
|
|
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 {
|
|
2738
2740
|
/* Firefox */
|
|
2739
2741
|
scrollbar-width: none;
|
|
2740
2742
|
/* IE 10+ */
|
|
2741
2743
|
-ms-overflow-style: none;
|
|
2742
2744
|
/* Chrome, Safari and Opera */
|
|
2743
2745
|
}
|
|
2744
|
-
.
|
|
2746
|
+
._hideScrollbar_7sjlf_67::-webkit-scrollbar {
|
|
2745
2747
|
display: none;
|
|
2746
2748
|
}
|
|
2747
|
-
.
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
._virtualRows_4cdnv_306 {
|
|
2751
|
-
width: 100%;
|
|
2752
|
-
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);
|
|
2753
2752
|
}
|
|
2754
|
-
.
|
|
2755
|
-
|
|
2756
|
-
top: 0;
|
|
2757
|
-
left: 0;
|
|
2758
|
-
width: 100%;
|
|
2753
|
+
._noPointerEvents_7sjlf_309 {
|
|
2754
|
+
pointer-events: none;
|
|
2759
2755
|
}
|
|
2760
2756
|
._loader_477i5_1 {
|
|
2761
2757
|
width: 100%;
|
|
@@ -9141,80 +9137,80 @@ button:active .remirror-menu-pane-shortcut,
|
|
|
9141
9137
|
width: 8px;
|
|
9142
9138
|
height: 14px;
|
|
9143
9139
|
}
|
|
9144
|
-
.
|
|
9140
|
+
._inputInTable_xzacf_1 {
|
|
9145
9141
|
background-color: transparent;
|
|
9146
9142
|
border-radius: inherit !important;
|
|
9147
9143
|
height: var(--size);
|
|
9148
9144
|
min-height: 100%;
|
|
9149
9145
|
}
|
|
9150
|
-
.
|
|
9146
|
+
._inputInTable_xzacf_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
9151
9147
|
border-color: transparent;
|
|
9152
9148
|
}
|
|
9153
|
-
.
|
|
9149
|
+
._inputInTable_xzacf_1:not(:focus) {
|
|
9154
9150
|
box-shadow: none;
|
|
9155
9151
|
}
|
|
9156
|
-
.
|
|
9152
|
+
._inputHover_xzacf_13 {
|
|
9157
9153
|
position: relative;
|
|
9158
9154
|
border-color: var(--color-border-hover);
|
|
9159
9155
|
z-index: 2;
|
|
9160
9156
|
}
|
|
9161
|
-
.
|
|
9157
|
+
._inputFocus_xzacf_18 {
|
|
9162
9158
|
position: relative;
|
|
9163
9159
|
outline: none !important;
|
|
9164
9160
|
border-color: var(--color-border-focus) !important;
|
|
9165
9161
|
box-shadow: var(--shadow-focus);
|
|
9166
9162
|
z-index: 3;
|
|
9167
9163
|
}
|
|
9168
|
-
.
|
|
9169
|
-
.
|
|
9164
|
+
._inputError_xzacf_25,
|
|
9165
|
+
._inputWarning_xzacf_26 {
|
|
9170
9166
|
position: relative;
|
|
9171
9167
|
}
|
|
9172
|
-
.
|
|
9168
|
+
._inputError_xzacf_25 {
|
|
9173
9169
|
z-index: 2;
|
|
9174
9170
|
border-color: var(--color-border-error);
|
|
9175
9171
|
color: var(--color-text-error) !important;
|
|
9176
9172
|
background-color: var(--color-background-error-muted);
|
|
9177
9173
|
}
|
|
9178
|
-
.
|
|
9174
|
+
._inputError_xzacf_25:hover {
|
|
9179
9175
|
border-color: var(--color-border-error-hover) !important;
|
|
9180
9176
|
}
|
|
9181
|
-
.
|
|
9177
|
+
._inputError_xzacf_25:focus {
|
|
9182
9178
|
position: relative;
|
|
9183
9179
|
outline: none !important;
|
|
9184
9180
|
border-color: var(--color-border-focus) !important;
|
|
9185
9181
|
box-shadow: var(--shadow-focus);
|
|
9186
9182
|
z-index: 3;
|
|
9187
9183
|
}
|
|
9188
|
-
.
|
|
9184
|
+
._inputWarning_xzacf_26 {
|
|
9189
9185
|
z-index: 1;
|
|
9190
9186
|
border-color: var(--color-border-warning);
|
|
9191
9187
|
color: var(--color-text-warning) !important;
|
|
9192
9188
|
background-color: var(--color-background-warning-muted);
|
|
9193
9189
|
}
|
|
9194
|
-
.
|
|
9190
|
+
._inputWarning_xzacf_26:hover {
|
|
9195
9191
|
border-color: var(--color-border-warning-hover) !important;
|
|
9196
9192
|
}
|
|
9197
|
-
.
|
|
9193
|
+
._inputWarning_xzacf_26:focus {
|
|
9198
9194
|
position: relative;
|
|
9199
9195
|
outline: none !important;
|
|
9200
9196
|
border-color: var(--color-border-focus) !important;
|
|
9201
9197
|
box-shadow: var(--shadow-focus);
|
|
9202
9198
|
z-index: 3;
|
|
9203
9199
|
}
|
|
9204
|
-
.
|
|
9200
|
+
._inputDisabled_xzacf_61 {
|
|
9205
9201
|
pointer-events: none;
|
|
9206
9202
|
background-color: var(--color-background-disabled);
|
|
9207
9203
|
color: var(--color-text-muted);
|
|
9208
9204
|
box-shadow: none;
|
|
9209
9205
|
}
|
|
9210
|
-
.
|
|
9206
|
+
._hideScrollbars_xzacf_67 {
|
|
9211
9207
|
/* Firefox */
|
|
9212
9208
|
scrollbar-width: none;
|
|
9213
9209
|
/* IE 10+ */
|
|
9214
9210
|
-ms-overflow-style: none;
|
|
9215
9211
|
/* Chrome, Safari and Opera */
|
|
9216
9212
|
}
|
|
9217
|
-
.
|
|
9213
|
+
._hideScrollbars_xzacf_67::-webkit-scrollbar {
|
|
9218
9214
|
display: none;
|
|
9219
9215
|
}
|
|
9220
9216
|
:root {
|
|
@@ -9225,7 +9221,7 @@ html[data-theme='dark'] {
|
|
|
9225
9221
|
--color-background-table-header: var(--color-neutral-800);
|
|
9226
9222
|
--color-background-table-row-tinted: var(--color-neutral-800);
|
|
9227
9223
|
}
|
|
9228
|
-
.
|
|
9224
|
+
._wrapper_xzacf_85 {
|
|
9229
9225
|
border-radius: inherit;
|
|
9230
9226
|
max-height: 100%;
|
|
9231
9227
|
max-width: 100%;
|
|
@@ -9233,23 +9229,23 @@ html[data-theme='dark'] {
|
|
|
9233
9229
|
flex-direction: column;
|
|
9234
9230
|
overflow: hidden;
|
|
9235
9231
|
}
|
|
9236
|
-
.
|
|
9232
|
+
._wrapper_xzacf_85._bordered_xzacf_93 {
|
|
9237
9233
|
border-radius: var(--border-radius);
|
|
9238
9234
|
border: 1px solid var(--color-border);
|
|
9239
9235
|
box-shadow: var(--shadow-card);
|
|
9240
9236
|
}
|
|
9241
|
-
.
|
|
9242
|
-
background: var(--color-background);
|
|
9237
|
+
._scroll_xzacf_98 {
|
|
9243
9238
|
overflow-y: auto;
|
|
9244
9239
|
border-radius: inherit;
|
|
9245
9240
|
flex: 1;
|
|
9246
9241
|
min-height: 0;
|
|
9247
9242
|
}
|
|
9248
|
-
.
|
|
9243
|
+
._scroll_xzacf_98:not(:first-child) {
|
|
9249
9244
|
border-top-left-radius: 0;
|
|
9250
9245
|
border-top-right-radius: 0;
|
|
9251
9246
|
}
|
|
9252
|
-
.
|
|
9247
|
+
._table_xzacf_108 {
|
|
9248
|
+
background: var(--color-background-raised);
|
|
9253
9249
|
color: var(--color-text);
|
|
9254
9250
|
border-collapse: separate;
|
|
9255
9251
|
border-spacing: 0;
|
|
@@ -9257,39 +9253,38 @@ html[data-theme='dark'] {
|
|
|
9257
9253
|
width: 100%;
|
|
9258
9254
|
font-variant-numeric: tabular-nums;
|
|
9259
9255
|
}
|
|
9260
|
-
.
|
|
9256
|
+
._table_xzacf_108 > :first-child {
|
|
9261
9257
|
border-top-left-radius: inherit;
|
|
9262
9258
|
border-top-right-radius: inherit;
|
|
9263
9259
|
}
|
|
9264
|
-
.
|
|
9260
|
+
._table_xzacf_108 > :first-child > :first-child {
|
|
9265
9261
|
border-top-left-radius: inherit;
|
|
9266
9262
|
border-top-right-radius: inherit;
|
|
9267
9263
|
}
|
|
9268
|
-
.
|
|
9264
|
+
._table_xzacf_108 > :first-child > :first-child > :first-child {
|
|
9269
9265
|
border-top-left-radius: inherit;
|
|
9270
9266
|
}
|
|
9271
|
-
.
|
|
9267
|
+
._table_xzacf_108 > :first-child > :first-child > :last-child {
|
|
9272
9268
|
border-top-right-radius: inherit;
|
|
9273
9269
|
}
|
|
9274
|
-
.
|
|
9270
|
+
._table_xzacf_108 > :last-child {
|
|
9275
9271
|
border-bottom-left-radius: inherit;
|
|
9276
9272
|
border-bottom-right-radius: inherit;
|
|
9277
9273
|
}
|
|
9278
|
-
.
|
|
9274
|
+
._table_xzacf_108 > :last-child > :last-child {
|
|
9279
9275
|
border-bottom-left-radius: inherit;
|
|
9280
9276
|
border-bottom-right-radius: inherit;
|
|
9281
9277
|
}
|
|
9282
|
-
.
|
|
9278
|
+
._table_xzacf_108 > :last-child > :last-child > :first-child {
|
|
9283
9279
|
border-bottom-left-radius: inherit;
|
|
9284
9280
|
}
|
|
9285
|
-
.
|
|
9281
|
+
._table_xzacf_108 > :last-child > :last-child > :last-child {
|
|
9286
9282
|
border-bottom-right-radius: inherit;
|
|
9287
9283
|
}
|
|
9288
|
-
.
|
|
9284
|
+
._dragOverlay_xzacf_145 {
|
|
9289
9285
|
box-shadow: var(--shadow-layer);
|
|
9290
9286
|
border-radius: var(--border-radius);
|
|
9291
9287
|
overflow: hidden;
|
|
9292
|
-
position: fixed;
|
|
9293
9288
|
}
|
|
9294
9289
|
th,
|
|
9295
9290
|
td {
|
|
@@ -9304,10 +9299,10 @@ th:not(:first-child),
|
|
|
9304
9299
|
td:not(:first-child) {
|
|
9305
9300
|
border-left-width: 1px;
|
|
9306
9301
|
}
|
|
9307
|
-
.
|
|
9308
|
-
.
|
|
9309
|
-
.
|
|
9310
|
-
.
|
|
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 {
|
|
9311
9306
|
border-bottom-width: 1px;
|
|
9312
9307
|
}
|
|
9313
9308
|
@-moz-document url-prefix() {
|
|
@@ -9330,23 +9325,14 @@ thead tr {
|
|
|
9330
9325
|
}
|
|
9331
9326
|
tbody {
|
|
9332
9327
|
overflow: hidden;
|
|
9328
|
+
background-color: var(--color-background);
|
|
9333
9329
|
}
|
|
9334
9330
|
tbody tr {
|
|
9335
9331
|
background-color: var(--color-background-raised);
|
|
9336
9332
|
}
|
|
9337
|
-
.
|
|
9333
|
+
._striped_xzacf_194 tbody tr:nth-child(even) {
|
|
9338
9334
|
background-color: var(--color-background-table-row-tinted);
|
|
9339
9335
|
}
|
|
9340
|
-
tbody:before {
|
|
9341
|
-
display: block;
|
|
9342
|
-
padding-top: var(--virtualPaddingTop);
|
|
9343
|
-
content: '';
|
|
9344
|
-
}
|
|
9345
|
-
tbody:after {
|
|
9346
|
-
display: block;
|
|
9347
|
-
padding-bottom: var(--virtualPaddingBottom);
|
|
9348
|
-
content: '';
|
|
9349
|
-
}
|
|
9350
9336
|
._title_zn5s7_1 {
|
|
9351
9337
|
background-color: var(--color-background-cardheader);
|
|
9352
9338
|
border-bottom: 1px solid var(--color-border);
|