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