@oliasoft-open-source/react-ui-library 4.18.1-beta-1 → 4.19.0-beta-2
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 +135 -119
- package/dist/index.d.ts +26 -24
- package/dist/index.js +1183 -727
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
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_1wss1_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_1wss1_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
2452
2452
|
border-color: transparent;
|
|
2453
2453
|
}
|
|
2454
|
-
.
|
|
2454
|
+
._inputInTable_1wss1_1:not(:focus) {
|
|
2455
2455
|
box-shadow: none;
|
|
2456
2456
|
}
|
|
2457
|
-
.
|
|
2457
|
+
._inputHover_1wss1_13 {
|
|
2458
2458
|
position: relative;
|
|
2459
2459
|
border-color: var(--color-border-hover);
|
|
2460
2460
|
z-index: 2;
|
|
2461
2461
|
}
|
|
2462
|
-
.
|
|
2462
|
+
._inputFocus_1wss1_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_1wss1_25,
|
|
2470
|
+
._inputWarning_1wss1_26 {
|
|
2471
2471
|
position: relative;
|
|
2472
2472
|
}
|
|
2473
|
-
.
|
|
2473
|
+
._inputError_1wss1_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_1wss1_25:hover {
|
|
2480
2480
|
border-color: var(--color-border-error-hover) !important;
|
|
2481
2481
|
}
|
|
2482
|
-
.
|
|
2482
|
+
._inputError_1wss1_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_1wss1_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_1wss1_26:hover {
|
|
2496
2496
|
border-color: var(--color-border-warning-hover) !important;
|
|
2497
2497
|
}
|
|
2498
|
-
.
|
|
2498
|
+
._inputWarning_1wss1_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_1wss1_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_1wss1_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_1wss1_67::-webkit-scrollbar {
|
|
2519
2519
|
display: none;
|
|
2520
2520
|
}
|
|
2521
|
-
.
|
|
2522
|
-
|
|
2521
|
+
._list_1wss1_77 {
|
|
2522
|
+
display: flex;
|
|
2523
|
+
flex-direction: column;
|
|
2524
|
+
max-height: 100%;
|
|
2525
|
+
overflow: hidden;
|
|
2526
|
+
}
|
|
2527
|
+
._bordered_1wss1_83 {
|
|
2528
|
+
border: 1px solid var(--color-border);
|
|
2529
|
+
border-radius: var(--border-radius);
|
|
2530
|
+
}
|
|
2531
|
+
._bordered_1wss1_83 ._virtualRow_1wss1_87:last-child ._item_1wss1_87 {
|
|
2532
|
+
border-bottom: none;
|
|
2533
|
+
}
|
|
2534
|
+
._header_1wss1_90 ._headerTitle_1wss1_90,
|
|
2535
|
+
._heading_1wss1_91 ._itemHeader_1wss1_91 {
|
|
2523
2536
|
transition: opacity 0.3s;
|
|
2524
2537
|
}
|
|
2525
|
-
.
|
|
2526
|
-
.
|
|
2538
|
+
._narrow_1wss1_94 ._header_1wss1_90 ._headerTitle_1wss1_90,
|
|
2539
|
+
._narrow_1wss1_94 ._heading_1wss1_91 ._itemHeader_1wss1_91 {
|
|
2527
2540
|
opacity: 0;
|
|
2528
2541
|
}
|
|
2529
|
-
.
|
|
2542
|
+
._stickyHeader_1wss1_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_1wss1_91 {
|
|
2536
2549
|
padding: var(--padding-xs) var(--padding);
|
|
2537
2550
|
display: flex;
|
|
2538
2551
|
align-items: flex-start;
|
|
2539
2552
|
}
|
|
2540
|
-
.
|
|
2553
|
+
._itemHeader_1wss1_91 ._title_1wss1_109 {
|
|
2541
2554
|
margin: 0;
|
|
2542
2555
|
padding: 0;
|
|
2543
2556
|
flex-grow: 1;
|
|
2544
2557
|
min-width: 0;
|
|
2545
2558
|
}
|
|
2546
|
-
.
|
|
2559
|
+
._itemHeader_1wss1_91 ._name_1wss1_115 {
|
|
2547
2560
|
font-weight: 400;
|
|
2561
|
+
display: block;
|
|
2548
2562
|
}
|
|
2549
|
-
.
|
|
2563
|
+
._itemHeader_1wss1_91 ._iconTooltipMargin_1wss1_119 {
|
|
2550
2564
|
margin-left: var(--padding-xs);
|
|
2551
2565
|
}
|
|
2552
|
-
.
|
|
2566
|
+
._itemHeader_1wss1_91 ._bold_1wss1_122 {
|
|
2553
2567
|
font-weight: bold;
|
|
2554
2568
|
}
|
|
2555
|
-
.
|
|
2569
|
+
._header_1wss1_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_1wss1_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_1wss1_133:hover {
|
|
2571
2587
|
color: var(--color-text-primary-hover);
|
|
2572
2588
|
}
|
|
2573
|
-
.
|
|
2589
|
+
._toggleNarrow_1wss1_133:active {
|
|
2574
2590
|
color: var(--color-text-primary-active);
|
|
2575
2591
|
}
|
|
2576
|
-
.
|
|
2592
|
+
._narrow_1wss1_94 ._toggleNarrow_1wss1_133 {
|
|
2577
2593
|
transform: scaleX(-1);
|
|
2578
2594
|
}
|
|
2579
|
-
.
|
|
2595
|
+
._drag_1wss1_151 {
|
|
2580
2596
|
color: var(--color-text-faint);
|
|
2581
2597
|
display: flex;
|
|
2582
2598
|
align-items: center;
|
|
@@ -2590,34 +2606,22 @@ html[data-theme='dark'] {
|
|
|
2590
2606
|
width: var(--size-sm);
|
|
2591
2607
|
flex-shrink: 0;
|
|
2592
2608
|
}
|
|
2593
|
-
.
|
|
2609
|
+
._drag_1wss1_151:hover {
|
|
2594
2610
|
color: var(--color-text-primary-hover);
|
|
2595
2611
|
}
|
|
2596
|
-
.
|
|
2612
|
+
._drag_1wss1_151:active {
|
|
2597
2613
|
cursor: grabbing;
|
|
2598
2614
|
color: var(--color-text-primary-active);
|
|
2599
2615
|
}
|
|
2600
|
-
.
|
|
2616
|
+
._dragOverlay_1wss1_172 {
|
|
2601
2617
|
box-shadow: var(--shadow-layer);
|
|
2602
2618
|
border-radius: var(--border-radius);
|
|
2603
2619
|
overflow: hidden;
|
|
2604
2620
|
}
|
|
2605
|
-
.
|
|
2606
|
-
flex-shrink: 0;
|
|
2621
|
+
._listContent_1wss1_177 {
|
|
2607
2622
|
background: var(--color-background);
|
|
2608
2623
|
}
|
|
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 {
|
|
2624
|
+
._item_1wss1_87 {
|
|
2621
2625
|
color: inherit;
|
|
2622
2626
|
display: block;
|
|
2623
2627
|
transition: background-color 0.2s;
|
|
@@ -2628,7 +2632,7 @@ html[data-theme='dark'] {
|
|
|
2628
2632
|
overflow-wrap: break-word;
|
|
2629
2633
|
hyphens: auto;
|
|
2630
2634
|
}
|
|
2631
|
-
.
|
|
2635
|
+
._item_1wss1_87:not(._heading_1wss1_91):after {
|
|
2632
2636
|
content: '';
|
|
2633
2637
|
position: absolute;
|
|
2634
2638
|
left: 0;
|
|
@@ -2639,41 +2643,41 @@ html[data-theme='dark'] {
|
|
|
2639
2643
|
border-bottom-left-radius: inherit;
|
|
2640
2644
|
transition: background 0.3s, width 0.3s;
|
|
2641
2645
|
}
|
|
2642
|
-
.
|
|
2646
|
+
._item_1wss1_87._action_1wss1_202 {
|
|
2643
2647
|
cursor: pointer;
|
|
2644
2648
|
}
|
|
2645
|
-
.
|
|
2649
|
+
._item_1wss1_87._action_1wss1_202:not(._active_1wss1_205):hover {
|
|
2646
2650
|
background: var(--color-background-listitem-hover);
|
|
2647
2651
|
}
|
|
2648
|
-
.
|
|
2652
|
+
._item_1wss1_87._action_1wss1_202:not(._active_1wss1_205):hover:after {
|
|
2649
2653
|
width: 5px;
|
|
2650
2654
|
background: rgba(0, 0, 0, 0.1);
|
|
2651
2655
|
}
|
|
2652
|
-
.
|
|
2656
|
+
._item_1wss1_87._indented_1wss1_212:after {
|
|
2653
2657
|
width: 3px;
|
|
2654
2658
|
background: rgba(0, 0, 0, 0.1);
|
|
2655
2659
|
}
|
|
2656
|
-
.
|
|
2660
|
+
._item_1wss1_87._active_1wss1_205 {
|
|
2657
2661
|
cursor: default;
|
|
2658
2662
|
position: relative;
|
|
2659
2663
|
z-index: 1;
|
|
2660
2664
|
background: var(--color-background-listitem-active);
|
|
2661
2665
|
}
|
|
2662
|
-
.
|
|
2666
|
+
._item_1wss1_87._active_1wss1_205:after {
|
|
2663
2667
|
background: var(--color-background-primary) !important;
|
|
2664
2668
|
}
|
|
2665
|
-
.
|
|
2669
|
+
._item_1wss1_87._disabled_1wss1_225 {
|
|
2666
2670
|
color: var(--color-text-faint);
|
|
2667
2671
|
pointer-events: none;
|
|
2668
2672
|
}
|
|
2669
|
-
.
|
|
2673
|
+
._item_1wss1_87._heading_1wss1_91 {
|
|
2670
2674
|
color: var(--color-text-muted);
|
|
2671
2675
|
background-color: var(--color-background-cardheader);
|
|
2672
2676
|
}
|
|
2673
|
-
.
|
|
2677
|
+
._item_1wss1_87._heading_1wss1_91._action_1wss1_202:hover {
|
|
2674
2678
|
color: var(--color-text-primary-hover);
|
|
2675
2679
|
}
|
|
2676
|
-
.
|
|
2680
|
+
._item_1wss1_87 ._label_1wss1_236 {
|
|
2677
2681
|
margin-right: var(--padding-xs);
|
|
2678
2682
|
flex-shrink: 0;
|
|
2679
2683
|
width: var(--size-sm);
|
|
@@ -2684,38 +2688,38 @@ html[data-theme='dark'] {
|
|
|
2684
2688
|
align-items: center;
|
|
2685
2689
|
justify-content: center;
|
|
2686
2690
|
}
|
|
2687
|
-
.
|
|
2688
|
-
.
|
|
2691
|
+
._item_1wss1_87 ._details_1wss1_247,
|
|
2692
|
+
._item_1wss1_87 ._metadata_1wss1_248 {
|
|
2689
2693
|
display: block;
|
|
2690
2694
|
width: 100%;
|
|
2691
2695
|
font-weight: normal;
|
|
2692
2696
|
}
|
|
2693
|
-
.
|
|
2697
|
+
._item_1wss1_87 ._metadata_1wss1_248 {
|
|
2694
2698
|
color: var(--color-text-muted);
|
|
2695
2699
|
}
|
|
2696
|
-
.
|
|
2700
|
+
._item_1wss1_87 ._itemContent_1wss1_256 {
|
|
2697
2701
|
padding: 0 var(--padding) var(--padding-sm);
|
|
2698
2702
|
cursor: auto;
|
|
2699
2703
|
}
|
|
2700
|
-
.
|
|
2704
|
+
._item_1wss1_87 ._itemContent_1wss1_256:empty {
|
|
2701
2705
|
padding: inherit;
|
|
2702
2706
|
}
|
|
2703
|
-
.
|
|
2707
|
+
._indentIcon_1wss1_263 {
|
|
2704
2708
|
color: var(--color-text-faint);
|
|
2705
2709
|
flex-shrink: 0;
|
|
2706
2710
|
margin-right: var(--padding-xxs);
|
|
2707
2711
|
}
|
|
2708
|
-
.
|
|
2712
|
+
._expandIcon_1wss1_268 {
|
|
2709
2713
|
flex-shrink: 0;
|
|
2710
2714
|
position: relative;
|
|
2711
2715
|
display: flex;
|
|
2712
2716
|
height: var(--line-height);
|
|
2713
2717
|
margin-right: var(--padding-xs);
|
|
2714
2718
|
}
|
|
2715
|
-
.
|
|
2719
|
+
._expandIcon_1wss1_268._expanded_1wss1_275 svg {
|
|
2716
2720
|
transform: rotate(90deg);
|
|
2717
2721
|
}
|
|
2718
|
-
.
|
|
2722
|
+
._right_1wss1_278 {
|
|
2719
2723
|
margin-left: auto;
|
|
2720
2724
|
display: flex;
|
|
2721
2725
|
align-items: center;
|
|
@@ -2723,36 +2727,38 @@ html[data-theme='dark'] {
|
|
|
2723
2727
|
margin-bottom: calc((var(--line-height) - var(--size-sm)) / 2);
|
|
2724
2728
|
min-height: var(--size-sm);
|
|
2725
2729
|
}
|
|
2726
|
-
.
|
|
2730
|
+
._actions_1wss1_286 {
|
|
2727
2731
|
margin-left: var(--padding-xs);
|
|
2728
2732
|
display: flex;
|
|
2729
2733
|
align-items: center;
|
|
2730
2734
|
}
|
|
2731
|
-
.
|
|
2735
|
+
._scrollableList_1wss1_291 {
|
|
2732
2736
|
height: 100%;
|
|
2733
2737
|
overflow-y: auto;
|
|
2734
|
-
scroll-behavior: smooth;
|
|
2735
|
-
}
|
|
2736
|
-
._infiniteScrollContainer_7sjlf_292 {
|
|
2737
|
-
overflow: hidden !important;
|
|
2738
2738
|
}
|
|
2739
|
-
.
|
|
2739
|
+
._hideScrollbar_1wss1_67 {
|
|
2740
2740
|
/* Firefox */
|
|
2741
2741
|
scrollbar-width: none;
|
|
2742
2742
|
/* IE 10+ */
|
|
2743
2743
|
-ms-overflow-style: none;
|
|
2744
2744
|
/* Chrome, Safari and Opera */
|
|
2745
2745
|
}
|
|
2746
|
-
.
|
|
2746
|
+
._hideScrollbar_1wss1_67::-webkit-scrollbar {
|
|
2747
2747
|
display: none;
|
|
2748
2748
|
}
|
|
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 {
|
|
2749
|
+
._noPointerEvents_1wss1_305 {
|
|
2754
2750
|
pointer-events: none;
|
|
2755
2751
|
}
|
|
2752
|
+
._virtualRows_1wss1_308 {
|
|
2753
|
+
width: 100%;
|
|
2754
|
+
position: relative;
|
|
2755
|
+
}
|
|
2756
|
+
._virtualRow_1wss1_87 {
|
|
2757
|
+
position: absolute;
|
|
2758
|
+
top: 0;
|
|
2759
|
+
left: 0;
|
|
2760
|
+
width: 100%;
|
|
2761
|
+
}
|
|
2756
2762
|
._loader_477i5_1 {
|
|
2757
2763
|
width: 100%;
|
|
2758
2764
|
height: 100%;
|
|
@@ -9137,80 +9143,80 @@ button:active .remirror-menu-pane-shortcut,
|
|
|
9137
9143
|
width: 8px;
|
|
9138
9144
|
height: 14px;
|
|
9139
9145
|
}
|
|
9140
|
-
.
|
|
9146
|
+
._inputInTable_xkoxm_1 {
|
|
9141
9147
|
background-color: transparent;
|
|
9142
9148
|
border-radius: inherit !important;
|
|
9143
9149
|
height: var(--size);
|
|
9144
9150
|
min-height: 100%;
|
|
9145
9151
|
}
|
|
9146
|
-
.
|
|
9152
|
+
._inputInTable_xkoxm_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
9147
9153
|
border-color: transparent;
|
|
9148
9154
|
}
|
|
9149
|
-
.
|
|
9155
|
+
._inputInTable_xkoxm_1:not(:focus) {
|
|
9150
9156
|
box-shadow: none;
|
|
9151
9157
|
}
|
|
9152
|
-
.
|
|
9158
|
+
._inputHover_xkoxm_13 {
|
|
9153
9159
|
position: relative;
|
|
9154
9160
|
border-color: var(--color-border-hover);
|
|
9155
9161
|
z-index: 2;
|
|
9156
9162
|
}
|
|
9157
|
-
.
|
|
9163
|
+
._inputFocus_xkoxm_18 {
|
|
9158
9164
|
position: relative;
|
|
9159
9165
|
outline: none !important;
|
|
9160
9166
|
border-color: var(--color-border-focus) !important;
|
|
9161
9167
|
box-shadow: var(--shadow-focus);
|
|
9162
9168
|
z-index: 3;
|
|
9163
9169
|
}
|
|
9164
|
-
.
|
|
9165
|
-
.
|
|
9170
|
+
._inputError_xkoxm_25,
|
|
9171
|
+
._inputWarning_xkoxm_26 {
|
|
9166
9172
|
position: relative;
|
|
9167
9173
|
}
|
|
9168
|
-
.
|
|
9174
|
+
._inputError_xkoxm_25 {
|
|
9169
9175
|
z-index: 2;
|
|
9170
9176
|
border-color: var(--color-border-error);
|
|
9171
9177
|
color: var(--color-text-error) !important;
|
|
9172
9178
|
background-color: var(--color-background-error-muted);
|
|
9173
9179
|
}
|
|
9174
|
-
.
|
|
9180
|
+
._inputError_xkoxm_25:hover {
|
|
9175
9181
|
border-color: var(--color-border-error-hover) !important;
|
|
9176
9182
|
}
|
|
9177
|
-
.
|
|
9183
|
+
._inputError_xkoxm_25:focus {
|
|
9178
9184
|
position: relative;
|
|
9179
9185
|
outline: none !important;
|
|
9180
9186
|
border-color: var(--color-border-focus) !important;
|
|
9181
9187
|
box-shadow: var(--shadow-focus);
|
|
9182
9188
|
z-index: 3;
|
|
9183
9189
|
}
|
|
9184
|
-
.
|
|
9190
|
+
._inputWarning_xkoxm_26 {
|
|
9185
9191
|
z-index: 1;
|
|
9186
9192
|
border-color: var(--color-border-warning);
|
|
9187
9193
|
color: var(--color-text-warning) !important;
|
|
9188
9194
|
background-color: var(--color-background-warning-muted);
|
|
9189
9195
|
}
|
|
9190
|
-
.
|
|
9196
|
+
._inputWarning_xkoxm_26:hover {
|
|
9191
9197
|
border-color: var(--color-border-warning-hover) !important;
|
|
9192
9198
|
}
|
|
9193
|
-
.
|
|
9199
|
+
._inputWarning_xkoxm_26:focus {
|
|
9194
9200
|
position: relative;
|
|
9195
9201
|
outline: none !important;
|
|
9196
9202
|
border-color: var(--color-border-focus) !important;
|
|
9197
9203
|
box-shadow: var(--shadow-focus);
|
|
9198
9204
|
z-index: 3;
|
|
9199
9205
|
}
|
|
9200
|
-
.
|
|
9206
|
+
._inputDisabled_xkoxm_61 {
|
|
9201
9207
|
pointer-events: none;
|
|
9202
9208
|
background-color: var(--color-background-disabled);
|
|
9203
9209
|
color: var(--color-text-muted);
|
|
9204
9210
|
box-shadow: none;
|
|
9205
9211
|
}
|
|
9206
|
-
.
|
|
9212
|
+
._hideScrollbars_xkoxm_67 {
|
|
9207
9213
|
/* Firefox */
|
|
9208
9214
|
scrollbar-width: none;
|
|
9209
9215
|
/* IE 10+ */
|
|
9210
9216
|
-ms-overflow-style: none;
|
|
9211
9217
|
/* Chrome, Safari and Opera */
|
|
9212
9218
|
}
|
|
9213
|
-
.
|
|
9219
|
+
._hideScrollbars_xkoxm_67::-webkit-scrollbar {
|
|
9214
9220
|
display: none;
|
|
9215
9221
|
}
|
|
9216
9222
|
:root {
|
|
@@ -9221,7 +9227,7 @@ html[data-theme='dark'] {
|
|
|
9221
9227
|
--color-background-table-header: var(--color-neutral-800);
|
|
9222
9228
|
--color-background-table-row-tinted: var(--color-neutral-800);
|
|
9223
9229
|
}
|
|
9224
|
-
.
|
|
9230
|
+
._wrapper_xkoxm_85 {
|
|
9225
9231
|
border-radius: inherit;
|
|
9226
9232
|
max-height: 100%;
|
|
9227
9233
|
max-width: 100%;
|
|
@@ -9229,23 +9235,23 @@ html[data-theme='dark'] {
|
|
|
9229
9235
|
flex-direction: column;
|
|
9230
9236
|
overflow: hidden;
|
|
9231
9237
|
}
|
|
9232
|
-
.
|
|
9238
|
+
._wrapper_xkoxm_85._bordered_xkoxm_93 {
|
|
9233
9239
|
border-radius: var(--border-radius);
|
|
9234
9240
|
border: 1px solid var(--color-border);
|
|
9235
9241
|
box-shadow: var(--shadow-card);
|
|
9236
9242
|
}
|
|
9237
|
-
.
|
|
9243
|
+
._scroll_xkoxm_98 {
|
|
9244
|
+
background: var(--color-background);
|
|
9238
9245
|
overflow-y: auto;
|
|
9239
9246
|
border-radius: inherit;
|
|
9240
9247
|
flex: 1;
|
|
9241
9248
|
min-height: 0;
|
|
9242
9249
|
}
|
|
9243
|
-
.
|
|
9250
|
+
._scroll_xkoxm_98:not(:first-child) {
|
|
9244
9251
|
border-top-left-radius: 0;
|
|
9245
9252
|
border-top-right-radius: 0;
|
|
9246
9253
|
}
|
|
9247
|
-
.
|
|
9248
|
-
background: var(--color-background-raised);
|
|
9254
|
+
._table_xkoxm_109 {
|
|
9249
9255
|
color: var(--color-text);
|
|
9250
9256
|
border-collapse: separate;
|
|
9251
9257
|
border-spacing: 0;
|
|
@@ -9253,38 +9259,39 @@ html[data-theme='dark'] {
|
|
|
9253
9259
|
width: 100%;
|
|
9254
9260
|
font-variant-numeric: tabular-nums;
|
|
9255
9261
|
}
|
|
9256
|
-
.
|
|
9262
|
+
._table_xkoxm_109 > :first-child {
|
|
9257
9263
|
border-top-left-radius: inherit;
|
|
9258
9264
|
border-top-right-radius: inherit;
|
|
9259
9265
|
}
|
|
9260
|
-
.
|
|
9266
|
+
._table_xkoxm_109 > :first-child > :first-child {
|
|
9261
9267
|
border-top-left-radius: inherit;
|
|
9262
9268
|
border-top-right-radius: inherit;
|
|
9263
9269
|
}
|
|
9264
|
-
.
|
|
9270
|
+
._table_xkoxm_109 > :first-child > :first-child > :first-child {
|
|
9265
9271
|
border-top-left-radius: inherit;
|
|
9266
9272
|
}
|
|
9267
|
-
.
|
|
9273
|
+
._table_xkoxm_109 > :first-child > :first-child > :last-child {
|
|
9268
9274
|
border-top-right-radius: inherit;
|
|
9269
9275
|
}
|
|
9270
|
-
.
|
|
9276
|
+
._table_xkoxm_109 > :last-child {
|
|
9271
9277
|
border-bottom-left-radius: inherit;
|
|
9272
9278
|
border-bottom-right-radius: inherit;
|
|
9273
9279
|
}
|
|
9274
|
-
.
|
|
9280
|
+
._table_xkoxm_109 > :last-child > :last-child {
|
|
9275
9281
|
border-bottom-left-radius: inherit;
|
|
9276
9282
|
border-bottom-right-radius: inherit;
|
|
9277
9283
|
}
|
|
9278
|
-
.
|
|
9284
|
+
._table_xkoxm_109 > :last-child > :last-child > :first-child {
|
|
9279
9285
|
border-bottom-left-radius: inherit;
|
|
9280
9286
|
}
|
|
9281
|
-
.
|
|
9287
|
+
._table_xkoxm_109 > :last-child > :last-child > :last-child {
|
|
9282
9288
|
border-bottom-right-radius: inherit;
|
|
9283
9289
|
}
|
|
9284
|
-
.
|
|
9290
|
+
._dragOverlay_xkoxm_145 {
|
|
9285
9291
|
box-shadow: var(--shadow-layer);
|
|
9286
9292
|
border-radius: var(--border-radius);
|
|
9287
9293
|
overflow: hidden;
|
|
9294
|
+
position: fixed;
|
|
9288
9295
|
}
|
|
9289
9296
|
th,
|
|
9290
9297
|
td {
|
|
@@ -9299,10 +9306,10 @@ th:not(:first-child),
|
|
|
9299
9306
|
td:not(:first-child) {
|
|
9300
9307
|
border-left-width: 1px;
|
|
9301
9308
|
}
|
|
9302
|
-
.
|
|
9303
|
-
.
|
|
9304
|
-
.
|
|
9305
|
-
.
|
|
9309
|
+
._table_xkoxm_109 > *:not(:last-child) > tr th,
|
|
9310
|
+
._table_xkoxm_109 > *:not(:last-child) > tr td,
|
|
9311
|
+
._table_xkoxm_109 > *:last-child > tr:not(:last-child) th,
|
|
9312
|
+
._table_xkoxm_109 > *:last-child > tr:not(:last-child) td {
|
|
9306
9313
|
border-bottom-width: 1px;
|
|
9307
9314
|
}
|
|
9308
9315
|
@-moz-document url-prefix() {
|
|
@@ -9325,14 +9332,23 @@ thead tr {
|
|
|
9325
9332
|
}
|
|
9326
9333
|
tbody {
|
|
9327
9334
|
overflow: hidden;
|
|
9328
|
-
background-color: var(--color-background);
|
|
9329
9335
|
}
|
|
9330
9336
|
tbody tr {
|
|
9331
9337
|
background-color: var(--color-background-raised);
|
|
9332
9338
|
}
|
|
9333
|
-
.
|
|
9339
|
+
._striped_xkoxm_194 tbody [data-even='true'] {
|
|
9334
9340
|
background-color: var(--color-background-table-row-tinted);
|
|
9335
9341
|
}
|
|
9342
|
+
tbody:before {
|
|
9343
|
+
display: block;
|
|
9344
|
+
padding-top: var(--virtualPaddingTop);
|
|
9345
|
+
content: '';
|
|
9346
|
+
}
|
|
9347
|
+
tbody:after {
|
|
9348
|
+
display: block;
|
|
9349
|
+
padding-bottom: var(--virtualPaddingBottom);
|
|
9350
|
+
content: '';
|
|
9351
|
+
}
|
|
9336
9352
|
._title_zn5s7_1 {
|
|
9337
9353
|
background-color: var(--color-background-cardheader);
|
|
9338
9354
|
border-bottom: 1px solid var(--color-border);
|