@oliasoft-open-source/react-ui-library 4.18.0 → 4.19.0-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 +0 -8
- package/dist/global.css +136 -122
- package/dist/index.d.ts +26 -25
- package/dist/index.js +1175 -730
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1094,12 +1094,8 @@ 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` |
|
|
1098
1097
|
| `hideScrollbar` | Determines whether to hide the scrollbar when scrolling. | `false` |
|
|
1099
1098
|
| `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). | - |
|
|
1103
1099
|
|
|
1104
1100
|
### Usage Example
|
|
1105
1101
|
|
|
@@ -1114,12 +1110,8 @@ The `List` component renders a list of data items with various customization opt
|
|
|
1114
1110
|
height={300}
|
|
1115
1111
|
testId="my-list"
|
|
1116
1112
|
scrollDetails={{
|
|
1117
|
-
scrollable: true,
|
|
1118
1113
|
hideScrollbar: true,
|
|
1119
1114
|
triggerScrollToActiveItem: true,
|
|
1120
|
-
infiniteScroll: true,
|
|
1121
|
-
limit: 10,
|
|
1122
|
-
infiniteScrollTarget: document.getElementById('list-container'),
|
|
1123
1115
|
}}
|
|
1124
1116
|
/>
|
|
1125
1117
|
```
|
package/dist/global.css
CHANGED
|
@@ -2442,123 +2442,139 @@ 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_4cdnv_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_4cdnv_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
2452
2452
|
border-color: transparent;
|
|
2453
2453
|
}
|
|
2454
|
-
.
|
|
2454
|
+
._inputInTable_4cdnv_1:not(:focus) {
|
|
2455
2455
|
box-shadow: none;
|
|
2456
2456
|
}
|
|
2457
|
-
.
|
|
2457
|
+
._inputHover_4cdnv_13 {
|
|
2458
2458
|
position: relative;
|
|
2459
2459
|
border-color: var(--color-border-hover);
|
|
2460
2460
|
z-index: 2;
|
|
2461
2461
|
}
|
|
2462
|
-
.
|
|
2462
|
+
._inputFocus_4cdnv_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_4cdnv_25,
|
|
2470
|
+
._inputWarning_4cdnv_26 {
|
|
2471
2471
|
position: relative;
|
|
2472
2472
|
}
|
|
2473
|
-
.
|
|
2473
|
+
._inputError_4cdnv_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_4cdnv_25:hover {
|
|
2480
2480
|
border-color: var(--color-border-error-hover) !important;
|
|
2481
2481
|
}
|
|
2482
|
-
.
|
|
2482
|
+
._inputError_4cdnv_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_4cdnv_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_4cdnv_26:hover {
|
|
2496
2496
|
border-color: var(--color-border-warning-hover) !important;
|
|
2497
2497
|
}
|
|
2498
|
-
.
|
|
2498
|
+
._inputWarning_4cdnv_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_4cdnv_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_4cdnv_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_4cdnv_67::-webkit-scrollbar {
|
|
2519
2519
|
display: none;
|
|
2520
2520
|
}
|
|
2521
|
-
.
|
|
2522
|
-
|
|
2521
|
+
._list_4cdnv_77 {
|
|
2522
|
+
display: flex;
|
|
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 {
|
|
2523
2536
|
transition: opacity 0.3s;
|
|
2524
2537
|
}
|
|
2525
|
-
.
|
|
2526
|
-
.
|
|
2538
|
+
._narrow_4cdnv_94 ._header_4cdnv_90 ._headerTitle_4cdnv_90,
|
|
2539
|
+
._narrow_4cdnv_94 ._heading_4cdnv_91 ._itemHeader_4cdnv_91 {
|
|
2527
2540
|
opacity: 0;
|
|
2528
2541
|
}
|
|
2529
|
-
.
|
|
2542
|
+
._stickyHeader_4cdnv_98 {
|
|
2530
2543
|
position: sticky;
|
|
2531
2544
|
top: 0;
|
|
2532
2545
|
background-color: var(--color-background);
|
|
2533
2546
|
z-index: 10;
|
|
2534
2547
|
}
|
|
2535
|
-
.
|
|
2548
|
+
._itemHeader_4cdnv_91 {
|
|
2536
2549
|
padding: var(--padding-xs) var(--padding);
|
|
2537
2550
|
display: flex;
|
|
2538
2551
|
align-items: flex-start;
|
|
2539
2552
|
}
|
|
2540
|
-
.
|
|
2553
|
+
._itemHeader_4cdnv_91 ._title_4cdnv_109 {
|
|
2541
2554
|
margin: 0;
|
|
2542
2555
|
padding: 0;
|
|
2543
2556
|
flex-grow: 1;
|
|
2544
2557
|
min-width: 0;
|
|
2545
2558
|
}
|
|
2546
|
-
.
|
|
2559
|
+
._itemHeader_4cdnv_91 ._name_4cdnv_115 {
|
|
2547
2560
|
font-weight: 400;
|
|
2561
|
+
display: block;
|
|
2548
2562
|
}
|
|
2549
|
-
.
|
|
2563
|
+
._itemHeader_4cdnv_91 ._iconTooltipMargin_4cdnv_119 {
|
|
2550
2564
|
margin-left: var(--padding-xs);
|
|
2551
2565
|
}
|
|
2552
|
-
.
|
|
2566
|
+
._itemHeader_4cdnv_91 ._bold_4cdnv_122 {
|
|
2553
2567
|
font-weight: bold;
|
|
2554
2568
|
}
|
|
2555
|
-
.
|
|
2569
|
+
._header_4cdnv_90 {
|
|
2556
2570
|
padding: var(--padding);
|
|
2557
2571
|
display: flex;
|
|
2558
2572
|
align-items: center;
|
|
2559
2573
|
border-bottom: 1px solid var(--color-border);
|
|
2574
|
+
position: sticky;
|
|
2575
|
+
top: 0;
|
|
2560
2576
|
}
|
|
2561
|
-
.
|
|
2577
|
+
._toggleNarrow_4cdnv_133 {
|
|
2562
2578
|
margin-right: 16px;
|
|
2563
2579
|
margin-left: -5px;
|
|
2564
2580
|
color: #c8c8c8;
|
|
@@ -2567,16 +2583,16 @@ html[data-theme='dark'] {
|
|
|
2567
2583
|
width: 22px;
|
|
2568
2584
|
justify-content: center;
|
|
2569
2585
|
}
|
|
2570
|
-
.
|
|
2586
|
+
._toggleNarrow_4cdnv_133:hover {
|
|
2571
2587
|
color: var(--color-text-primary-hover);
|
|
2572
2588
|
}
|
|
2573
|
-
.
|
|
2589
|
+
._toggleNarrow_4cdnv_133:active {
|
|
2574
2590
|
color: var(--color-text-primary-active);
|
|
2575
2591
|
}
|
|
2576
|
-
.
|
|
2592
|
+
._narrow_4cdnv_94 ._toggleNarrow_4cdnv_133 {
|
|
2577
2593
|
transform: scaleX(-1);
|
|
2578
2594
|
}
|
|
2579
|
-
.
|
|
2595
|
+
._drag_4cdnv_151 {
|
|
2580
2596
|
color: var(--color-text-faint);
|
|
2581
2597
|
display: flex;
|
|
2582
2598
|
align-items: center;
|
|
@@ -2590,34 +2606,24 @@ html[data-theme='dark'] {
|
|
|
2590
2606
|
width: var(--size-sm);
|
|
2591
2607
|
flex-shrink: 0;
|
|
2592
2608
|
}
|
|
2593
|
-
.
|
|
2609
|
+
._drag_4cdnv_151:hover {
|
|
2594
2610
|
color: var(--color-text-primary-hover);
|
|
2595
2611
|
}
|
|
2596
|
-
.
|
|
2612
|
+
._drag_4cdnv_151:active {
|
|
2597
2613
|
cursor: grabbing;
|
|
2598
2614
|
color: var(--color-text-primary-active);
|
|
2599
2615
|
}
|
|
2600
|
-
.
|
|
2616
|
+
._dragOverlay_4cdnv_172 {
|
|
2601
2617
|
box-shadow: var(--shadow-layer);
|
|
2602
2618
|
border-radius: var(--border-radius);
|
|
2603
2619
|
overflow: hidden;
|
|
2604
2620
|
}
|
|
2605
|
-
.
|
|
2606
|
-
flex
|
|
2621
|
+
._listContent_4cdnv_177 {
|
|
2622
|
+
flex: 1;
|
|
2623
|
+
overflow-y: auto;
|
|
2607
2624
|
background: var(--color-background);
|
|
2608
2625
|
}
|
|
2609
|
-
.
|
|
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
|
+
._item_4cdnv_87 {
|
|
2621
2627
|
color: inherit;
|
|
2622
2628
|
display: block;
|
|
2623
2629
|
transition: background-color 0.2s;
|
|
@@ -2628,7 +2634,7 @@ html[data-theme='dark'] {
|
|
|
2628
2634
|
overflow-wrap: break-word;
|
|
2629
2635
|
hyphens: auto;
|
|
2630
2636
|
}
|
|
2631
|
-
.
|
|
2637
|
+
._item_4cdnv_87:not(._heading_4cdnv_91):after {
|
|
2632
2638
|
content: '';
|
|
2633
2639
|
position: absolute;
|
|
2634
2640
|
left: 0;
|
|
@@ -2639,41 +2645,41 @@ html[data-theme='dark'] {
|
|
|
2639
2645
|
border-bottom-left-radius: inherit;
|
|
2640
2646
|
transition: background 0.3s, width 0.3s;
|
|
2641
2647
|
}
|
|
2642
|
-
.
|
|
2648
|
+
._item_4cdnv_87._action_4cdnv_204 {
|
|
2643
2649
|
cursor: pointer;
|
|
2644
2650
|
}
|
|
2645
|
-
.
|
|
2651
|
+
._item_4cdnv_87._action_4cdnv_204:not(._active_4cdnv_207):hover {
|
|
2646
2652
|
background: var(--color-background-listitem-hover);
|
|
2647
2653
|
}
|
|
2648
|
-
.
|
|
2654
|
+
._item_4cdnv_87._action_4cdnv_204:not(._active_4cdnv_207):hover:after {
|
|
2649
2655
|
width: 5px;
|
|
2650
2656
|
background: rgba(0, 0, 0, 0.1);
|
|
2651
2657
|
}
|
|
2652
|
-
.
|
|
2658
|
+
._item_4cdnv_87._indented_4cdnv_214:after {
|
|
2653
2659
|
width: 3px;
|
|
2654
2660
|
background: rgba(0, 0, 0, 0.1);
|
|
2655
2661
|
}
|
|
2656
|
-
.
|
|
2662
|
+
._item_4cdnv_87._active_4cdnv_207 {
|
|
2657
2663
|
cursor: default;
|
|
2658
2664
|
position: relative;
|
|
2659
2665
|
z-index: 1;
|
|
2660
2666
|
background: var(--color-background-listitem-active);
|
|
2661
2667
|
}
|
|
2662
|
-
.
|
|
2668
|
+
._item_4cdnv_87._active_4cdnv_207:after {
|
|
2663
2669
|
background: var(--color-background-primary) !important;
|
|
2664
2670
|
}
|
|
2665
|
-
.
|
|
2671
|
+
._item_4cdnv_87._disabled_4cdnv_227 {
|
|
2666
2672
|
color: var(--color-text-faint);
|
|
2667
2673
|
pointer-events: none;
|
|
2668
2674
|
}
|
|
2669
|
-
.
|
|
2675
|
+
._item_4cdnv_87._heading_4cdnv_91 {
|
|
2670
2676
|
color: var(--color-text-muted);
|
|
2671
2677
|
background-color: var(--color-background-cardheader);
|
|
2672
2678
|
}
|
|
2673
|
-
.
|
|
2679
|
+
._item_4cdnv_87._heading_4cdnv_91._action_4cdnv_204:hover {
|
|
2674
2680
|
color: var(--color-text-primary-hover);
|
|
2675
2681
|
}
|
|
2676
|
-
.
|
|
2682
|
+
._item_4cdnv_87 ._label_4cdnv_238 {
|
|
2677
2683
|
margin-right: var(--padding-xs);
|
|
2678
2684
|
flex-shrink: 0;
|
|
2679
2685
|
width: var(--size-sm);
|
|
@@ -2684,38 +2690,38 @@ html[data-theme='dark'] {
|
|
|
2684
2690
|
align-items: center;
|
|
2685
2691
|
justify-content: center;
|
|
2686
2692
|
}
|
|
2687
|
-
.
|
|
2688
|
-
.
|
|
2693
|
+
._item_4cdnv_87 ._details_4cdnv_249,
|
|
2694
|
+
._item_4cdnv_87 ._metadata_4cdnv_250 {
|
|
2689
2695
|
display: block;
|
|
2690
2696
|
width: 100%;
|
|
2691
2697
|
font-weight: normal;
|
|
2692
2698
|
}
|
|
2693
|
-
.
|
|
2699
|
+
._item_4cdnv_87 ._metadata_4cdnv_250 {
|
|
2694
2700
|
color: var(--color-text-muted);
|
|
2695
2701
|
}
|
|
2696
|
-
.
|
|
2702
|
+
._item_4cdnv_87 ._itemContent_4cdnv_258 {
|
|
2697
2703
|
padding: 0 var(--padding) var(--padding-sm);
|
|
2698
2704
|
cursor: auto;
|
|
2699
2705
|
}
|
|
2700
|
-
.
|
|
2706
|
+
._item_4cdnv_87 ._itemContent_4cdnv_258:empty {
|
|
2701
2707
|
padding: inherit;
|
|
2702
2708
|
}
|
|
2703
|
-
.
|
|
2709
|
+
._indentIcon_4cdnv_265 {
|
|
2704
2710
|
color: var(--color-text-faint);
|
|
2705
2711
|
flex-shrink: 0;
|
|
2706
2712
|
margin-right: var(--padding-xxs);
|
|
2707
2713
|
}
|
|
2708
|
-
.
|
|
2714
|
+
._expandIcon_4cdnv_270 {
|
|
2709
2715
|
flex-shrink: 0;
|
|
2710
2716
|
position: relative;
|
|
2711
2717
|
display: flex;
|
|
2712
2718
|
height: var(--line-height);
|
|
2713
2719
|
margin-right: var(--padding-xs);
|
|
2714
2720
|
}
|
|
2715
|
-
.
|
|
2721
|
+
._expandIcon_4cdnv_270._expanded_4cdnv_277 svg {
|
|
2716
2722
|
transform: rotate(90deg);
|
|
2717
2723
|
}
|
|
2718
|
-
.
|
|
2724
|
+
._right_4cdnv_280 {
|
|
2719
2725
|
margin-left: auto;
|
|
2720
2726
|
display: flex;
|
|
2721
2727
|
align-items: center;
|
|
@@ -2723,36 +2729,34 @@ html[data-theme='dark'] {
|
|
|
2723
2729
|
margin-bottom: calc((var(--line-height) - var(--size-sm)) / 2);
|
|
2724
2730
|
min-height: var(--size-sm);
|
|
2725
2731
|
}
|
|
2726
|
-
.
|
|
2732
|
+
._actions_4cdnv_288 {
|
|
2727
2733
|
margin-left: var(--padding-xs);
|
|
2728
2734
|
display: flex;
|
|
2729
2735
|
align-items: center;
|
|
2730
2736
|
}
|
|
2731
|
-
.
|
|
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
|
+
._hideScrollbar_4cdnv_67 {
|
|
2740
2738
|
/* Firefox */
|
|
2741
2739
|
scrollbar-width: none;
|
|
2742
2740
|
/* IE 10+ */
|
|
2743
2741
|
-ms-overflow-style: none;
|
|
2744
2742
|
/* Chrome, Safari and Opera */
|
|
2745
2743
|
}
|
|
2746
|
-
.
|
|
2744
|
+
._hideScrollbar_4cdnv_67::-webkit-scrollbar {
|
|
2747
2745
|
display: none;
|
|
2748
2746
|
}
|
|
2749
|
-
.
|
|
2750
|
-
box-shadow: inset 0px 0px 0px 2px var(--color-background-primary);
|
|
2751
|
-
background: var(--color-background-listitem-active);
|
|
2752
|
-
}
|
|
2753
|
-
._noPointerEvents_7sjlf_309 {
|
|
2747
|
+
._noPointerEvents_4cdnv_303 {
|
|
2754
2748
|
pointer-events: none;
|
|
2755
2749
|
}
|
|
2750
|
+
._virtualRows_4cdnv_306 {
|
|
2751
|
+
width: 100%;
|
|
2752
|
+
position: relative;
|
|
2753
|
+
}
|
|
2754
|
+
._virtualRow_4cdnv_87 {
|
|
2755
|
+
position: absolute;
|
|
2756
|
+
top: 0;
|
|
2757
|
+
left: 0;
|
|
2758
|
+
width: 100%;
|
|
2759
|
+
}
|
|
2756
2760
|
._loader_477i5_1 {
|
|
2757
2761
|
width: 100%;
|
|
2758
2762
|
height: 100%;
|
|
@@ -9137,80 +9141,80 @@ button:active .remirror-menu-pane-shortcut,
|
|
|
9137
9141
|
width: 8px;
|
|
9138
9142
|
height: 14px;
|
|
9139
9143
|
}
|
|
9140
|
-
.
|
|
9144
|
+
._inputInTable_xkoxm_1 {
|
|
9141
9145
|
background-color: transparent;
|
|
9142
9146
|
border-radius: inherit !important;
|
|
9143
9147
|
height: var(--size);
|
|
9144
9148
|
min-height: 100%;
|
|
9145
9149
|
}
|
|
9146
|
-
.
|
|
9150
|
+
._inputInTable_xkoxm_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
9147
9151
|
border-color: transparent;
|
|
9148
9152
|
}
|
|
9149
|
-
.
|
|
9153
|
+
._inputInTable_xkoxm_1:not(:focus) {
|
|
9150
9154
|
box-shadow: none;
|
|
9151
9155
|
}
|
|
9152
|
-
.
|
|
9156
|
+
._inputHover_xkoxm_13 {
|
|
9153
9157
|
position: relative;
|
|
9154
9158
|
border-color: var(--color-border-hover);
|
|
9155
9159
|
z-index: 2;
|
|
9156
9160
|
}
|
|
9157
|
-
.
|
|
9161
|
+
._inputFocus_xkoxm_18 {
|
|
9158
9162
|
position: relative;
|
|
9159
9163
|
outline: none !important;
|
|
9160
9164
|
border-color: var(--color-border-focus) !important;
|
|
9161
9165
|
box-shadow: var(--shadow-focus);
|
|
9162
9166
|
z-index: 3;
|
|
9163
9167
|
}
|
|
9164
|
-
.
|
|
9165
|
-
.
|
|
9168
|
+
._inputError_xkoxm_25,
|
|
9169
|
+
._inputWarning_xkoxm_26 {
|
|
9166
9170
|
position: relative;
|
|
9167
9171
|
}
|
|
9168
|
-
.
|
|
9172
|
+
._inputError_xkoxm_25 {
|
|
9169
9173
|
z-index: 2;
|
|
9170
9174
|
border-color: var(--color-border-error);
|
|
9171
9175
|
color: var(--color-text-error) !important;
|
|
9172
9176
|
background-color: var(--color-background-error-muted);
|
|
9173
9177
|
}
|
|
9174
|
-
.
|
|
9178
|
+
._inputError_xkoxm_25:hover {
|
|
9175
9179
|
border-color: var(--color-border-error-hover) !important;
|
|
9176
9180
|
}
|
|
9177
|
-
.
|
|
9181
|
+
._inputError_xkoxm_25:focus {
|
|
9178
9182
|
position: relative;
|
|
9179
9183
|
outline: none !important;
|
|
9180
9184
|
border-color: var(--color-border-focus) !important;
|
|
9181
9185
|
box-shadow: var(--shadow-focus);
|
|
9182
9186
|
z-index: 3;
|
|
9183
9187
|
}
|
|
9184
|
-
.
|
|
9188
|
+
._inputWarning_xkoxm_26 {
|
|
9185
9189
|
z-index: 1;
|
|
9186
9190
|
border-color: var(--color-border-warning);
|
|
9187
9191
|
color: var(--color-text-warning) !important;
|
|
9188
9192
|
background-color: var(--color-background-warning-muted);
|
|
9189
9193
|
}
|
|
9190
|
-
.
|
|
9194
|
+
._inputWarning_xkoxm_26:hover {
|
|
9191
9195
|
border-color: var(--color-border-warning-hover) !important;
|
|
9192
9196
|
}
|
|
9193
|
-
.
|
|
9197
|
+
._inputWarning_xkoxm_26:focus {
|
|
9194
9198
|
position: relative;
|
|
9195
9199
|
outline: none !important;
|
|
9196
9200
|
border-color: var(--color-border-focus) !important;
|
|
9197
9201
|
box-shadow: var(--shadow-focus);
|
|
9198
9202
|
z-index: 3;
|
|
9199
9203
|
}
|
|
9200
|
-
.
|
|
9204
|
+
._inputDisabled_xkoxm_61 {
|
|
9201
9205
|
pointer-events: none;
|
|
9202
9206
|
background-color: var(--color-background-disabled);
|
|
9203
9207
|
color: var(--color-text-muted);
|
|
9204
9208
|
box-shadow: none;
|
|
9205
9209
|
}
|
|
9206
|
-
.
|
|
9210
|
+
._hideScrollbars_xkoxm_67 {
|
|
9207
9211
|
/* Firefox */
|
|
9208
9212
|
scrollbar-width: none;
|
|
9209
9213
|
/* IE 10+ */
|
|
9210
9214
|
-ms-overflow-style: none;
|
|
9211
9215
|
/* Chrome, Safari and Opera */
|
|
9212
9216
|
}
|
|
9213
|
-
.
|
|
9217
|
+
._hideScrollbars_xkoxm_67::-webkit-scrollbar {
|
|
9214
9218
|
display: none;
|
|
9215
9219
|
}
|
|
9216
9220
|
:root {
|
|
@@ -9221,7 +9225,7 @@ html[data-theme='dark'] {
|
|
|
9221
9225
|
--color-background-table-header: var(--color-neutral-800);
|
|
9222
9226
|
--color-background-table-row-tinted: var(--color-neutral-800);
|
|
9223
9227
|
}
|
|
9224
|
-
.
|
|
9228
|
+
._wrapper_xkoxm_85 {
|
|
9225
9229
|
border-radius: inherit;
|
|
9226
9230
|
max-height: 100%;
|
|
9227
9231
|
max-width: 100%;
|
|
@@ -9229,23 +9233,23 @@ html[data-theme='dark'] {
|
|
|
9229
9233
|
flex-direction: column;
|
|
9230
9234
|
overflow: hidden;
|
|
9231
9235
|
}
|
|
9232
|
-
.
|
|
9236
|
+
._wrapper_xkoxm_85._bordered_xkoxm_93 {
|
|
9233
9237
|
border-radius: var(--border-radius);
|
|
9234
9238
|
border: 1px solid var(--color-border);
|
|
9235
9239
|
box-shadow: var(--shadow-card);
|
|
9236
9240
|
}
|
|
9237
|
-
.
|
|
9241
|
+
._scroll_xkoxm_98 {
|
|
9242
|
+
background: var(--color-background);
|
|
9238
9243
|
overflow-y: auto;
|
|
9239
9244
|
border-radius: inherit;
|
|
9240
9245
|
flex: 1;
|
|
9241
9246
|
min-height: 0;
|
|
9242
9247
|
}
|
|
9243
|
-
.
|
|
9248
|
+
._scroll_xkoxm_98:not(:first-child) {
|
|
9244
9249
|
border-top-left-radius: 0;
|
|
9245
9250
|
border-top-right-radius: 0;
|
|
9246
9251
|
}
|
|
9247
|
-
.
|
|
9248
|
-
background: var(--color-background-raised);
|
|
9252
|
+
._table_xkoxm_109 {
|
|
9249
9253
|
color: var(--color-text);
|
|
9250
9254
|
border-collapse: separate;
|
|
9251
9255
|
border-spacing: 0;
|
|
@@ -9253,38 +9257,39 @@ html[data-theme='dark'] {
|
|
|
9253
9257
|
width: 100%;
|
|
9254
9258
|
font-variant-numeric: tabular-nums;
|
|
9255
9259
|
}
|
|
9256
|
-
.
|
|
9260
|
+
._table_xkoxm_109 > :first-child {
|
|
9257
9261
|
border-top-left-radius: inherit;
|
|
9258
9262
|
border-top-right-radius: inherit;
|
|
9259
9263
|
}
|
|
9260
|
-
.
|
|
9264
|
+
._table_xkoxm_109 > :first-child > :first-child {
|
|
9261
9265
|
border-top-left-radius: inherit;
|
|
9262
9266
|
border-top-right-radius: inherit;
|
|
9263
9267
|
}
|
|
9264
|
-
.
|
|
9268
|
+
._table_xkoxm_109 > :first-child > :first-child > :first-child {
|
|
9265
9269
|
border-top-left-radius: inherit;
|
|
9266
9270
|
}
|
|
9267
|
-
.
|
|
9271
|
+
._table_xkoxm_109 > :first-child > :first-child > :last-child {
|
|
9268
9272
|
border-top-right-radius: inherit;
|
|
9269
9273
|
}
|
|
9270
|
-
.
|
|
9274
|
+
._table_xkoxm_109 > :last-child {
|
|
9271
9275
|
border-bottom-left-radius: inherit;
|
|
9272
9276
|
border-bottom-right-radius: inherit;
|
|
9273
9277
|
}
|
|
9274
|
-
.
|
|
9278
|
+
._table_xkoxm_109 > :last-child > :last-child {
|
|
9275
9279
|
border-bottom-left-radius: inherit;
|
|
9276
9280
|
border-bottom-right-radius: inherit;
|
|
9277
9281
|
}
|
|
9278
|
-
.
|
|
9282
|
+
._table_xkoxm_109 > :last-child > :last-child > :first-child {
|
|
9279
9283
|
border-bottom-left-radius: inherit;
|
|
9280
9284
|
}
|
|
9281
|
-
.
|
|
9285
|
+
._table_xkoxm_109 > :last-child > :last-child > :last-child {
|
|
9282
9286
|
border-bottom-right-radius: inherit;
|
|
9283
9287
|
}
|
|
9284
|
-
.
|
|
9288
|
+
._dragOverlay_xkoxm_145 {
|
|
9285
9289
|
box-shadow: var(--shadow-layer);
|
|
9286
9290
|
border-radius: var(--border-radius);
|
|
9287
9291
|
overflow: hidden;
|
|
9292
|
+
position: fixed;
|
|
9288
9293
|
}
|
|
9289
9294
|
th,
|
|
9290
9295
|
td {
|
|
@@ -9299,10 +9304,10 @@ th:not(:first-child),
|
|
|
9299
9304
|
td:not(:first-child) {
|
|
9300
9305
|
border-left-width: 1px;
|
|
9301
9306
|
}
|
|
9302
|
-
.
|
|
9303
|
-
.
|
|
9304
|
-
.
|
|
9305
|
-
.
|
|
9307
|
+
._table_xkoxm_109 > *:not(:last-child) > tr th,
|
|
9308
|
+
._table_xkoxm_109 > *:not(:last-child) > tr td,
|
|
9309
|
+
._table_xkoxm_109 > *:last-child > tr:not(:last-child) th,
|
|
9310
|
+
._table_xkoxm_109 > *:last-child > tr:not(:last-child) td {
|
|
9306
9311
|
border-bottom-width: 1px;
|
|
9307
9312
|
}
|
|
9308
9313
|
@-moz-document url-prefix() {
|
|
@@ -9325,14 +9330,23 @@ thead tr {
|
|
|
9325
9330
|
}
|
|
9326
9331
|
tbody {
|
|
9327
9332
|
overflow: hidden;
|
|
9328
|
-
background-color: var(--color-background);
|
|
9329
9333
|
}
|
|
9330
9334
|
tbody tr {
|
|
9331
9335
|
background-color: var(--color-background-raised);
|
|
9332
9336
|
}
|
|
9333
|
-
.
|
|
9337
|
+
._striped_xkoxm_194 tbody [data-even='true'] {
|
|
9334
9338
|
background-color: var(--color-background-table-row-tinted);
|
|
9335
9339
|
}
|
|
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
|
+
}
|
|
9336
9350
|
._title_zn5s7_1 {
|
|
9337
9351
|
background-color: var(--color-background-cardheader);
|
|
9338
9352
|
border-bottom: 1px solid var(--color-border);
|