@gooddata/sdk-ui-kit 11.43.0-alpha.3 → 11.43.0-alpha.5
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/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts +5 -2
- package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts.map +1 -1
- package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.js +16 -4
- package/esm/@ui/UiMenu/UiMenu.d.ts.map +1 -1
- package/esm/@ui/UiMenu/UiMenu.js +1 -1
- package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts +10 -3
- package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts.map +1 -1
- package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.js +18 -4
- package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts +3 -1
- package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts.map +1 -1
- package/esm/@ui/UiPopover/UiPopover.d.ts.map +1 -1
- package/esm/@ui/UiPopover/UiPopover.js +1 -1
- package/esm/@ui/UiTags/UiTags.d.ts.map +1 -1
- package/esm/@ui/UiTags/UiTags.js +3 -4
- package/esm/Dropdown/Dropdown.d.ts +1 -1
- package/esm/Dropdown/Dropdown.d.ts.map +1 -1
- package/esm/List/LegacyList.d.ts +1 -1
- package/esm/List/LegacyList.d.ts.map +1 -1
- package/esm/List/LegacyList.js +103 -55
- package/esm/List/List.d.ts +1 -1
- package/esm/List/List.d.ts.map +1 -1
- package/esm/List/List.js +95 -53
- package/esm/Overlay/Overlay.js +2 -2
- package/esm/locales.d.ts +3 -0
- package/esm/locales.d.ts.map +1 -1
- package/esm/locales.js +1 -0
- package/esm/sdk-ui-kit.d.ts +20 -9
- package/package.json +12 -13
- package/src/@ui/UiGranteeRowControls/UiGranteeRowControls.scss +8 -0
- package/src/@ui/UiLabelsChecklist/UiLabelsChecklist.scss +11 -0
- package/src/@ui/UiMenu/UiMenu.scss +9 -0
- package/styles/css/insightList.css +1 -3
- package/styles/css/insightList.css.map +1 -1
- package/styles/css/list.css +14 -655
- package/styles/css/list.css.map +1 -1
- package/styles/css/main.css +33 -658
- package/styles/css/main.css.map +1 -1
- package/styles/css/menu.css +14 -655
- package/styles/css/menu.css.map +1 -1
- package/styles/scss/insightList.scss +1 -3
- package/styles/scss/list.scss +15 -65
package/styles/scss/list.scss
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
// (C) 2007-2025 GoodData Corporation
|
|
2
|
-
@use "fixed-data-table-2/dist/fixed-data-table.css";
|
|
3
2
|
@use "sass:color";
|
|
4
3
|
@use "animations";
|
|
5
4
|
@use "List/_mixins" as list-mixins;
|
|
@@ -461,85 +460,36 @@ button.gd-list-item {
|
|
|
461
460
|
}
|
|
462
461
|
|
|
463
462
|
.gd-infinite-list {
|
|
464
|
-
.
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
.public_fixedDataTable_main,
|
|
470
|
-
.fixedDataTableCellLayout_main,
|
|
471
|
-
.fixedDataTableRowLayout_main {
|
|
472
|
-
border: none;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
.public_fixedDataTable_main:focus-visible {
|
|
476
|
-
outline: revert;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
.public_Scrollbar_main {
|
|
480
|
-
&,
|
|
481
|
-
&.public_Scrollbar_mainActive {
|
|
482
|
-
border-color: transparent;
|
|
483
|
-
}
|
|
463
|
+
.gd-infinite-list-scroll-container {
|
|
464
|
+
overflow-x: hidden;
|
|
465
|
+
overflow-y: auto;
|
|
466
|
+
overscroll-behavior: contain;
|
|
484
467
|
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
468
|
+
&::-webkit-scrollbar {
|
|
469
|
+
-webkit-appearance: none;
|
|
470
|
+
appearance: none;
|
|
471
|
+
width: 6px;
|
|
488
472
|
}
|
|
489
473
|
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
.public_Scrollbar_face::after {
|
|
493
|
-
background-color: variables.$gd-color-disabled;
|
|
494
|
-
}
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
.public_Scrollbar_face {
|
|
499
|
-
&::after {
|
|
474
|
+
&::-webkit-scrollbar-thumb {
|
|
475
|
+
border-radius: 3px;
|
|
500
476
|
background-color: color.adjust(variables.$default-gd-color-disabled, $alpha: -0.7);
|
|
501
477
|
}
|
|
502
478
|
|
|
503
|
-
|
|
479
|
+
&:hover::-webkit-scrollbar-thumb {
|
|
504
480
|
background-color: variables.$gd-color-disabled;
|
|
505
481
|
}
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.public_fixedDataTable_header,
|
|
509
|
-
.public_fixedDataTable_header .public_fixedDataTableCell_main,
|
|
510
|
-
.public_fixedDataTable_scrollbarSpacer {
|
|
511
|
-
background: none;
|
|
512
|
-
}
|
|
513
482
|
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
.public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
|
|
518
|
-
background-color: transparent;
|
|
483
|
+
&:focus-visible {
|
|
484
|
+
outline: revert;
|
|
485
|
+
}
|
|
519
486
|
}
|
|
520
487
|
|
|
521
|
-
.
|
|
522
|
-
padding: 0;
|
|
488
|
+
.gd-infinite-list-item {
|
|
523
489
|
white-space: nowrap;
|
|
524
490
|
color: variables.$gd-color-text;
|
|
525
|
-
|
|
526
|
-
&:hover {
|
|
527
|
-
background-color: transparent;
|
|
528
|
-
}
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
.fixedDataTableCellLayout_wrap1 {
|
|
532
|
-
table-layout: fixed;
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
.fixedDataTableCellLayout_wrap2,
|
|
536
|
-
.fixedDataTableCellLayout_wrap3 {
|
|
537
|
-
width: inherit;
|
|
538
491
|
}
|
|
539
492
|
|
|
540
|
-
.fixedDataTableCellLayout_wrap2,
|
|
541
|
-
.fixedDataTableCellLayout_wrap3,
|
|
542
|
-
.public_fixedDataTableCell_cellContent,
|
|
543
493
|
.gd-project-list-item {
|
|
544
494
|
height: inherit;
|
|
545
495
|
}
|