@gooddata/sdk-ui-kit 11.43.0-alpha.4 → 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.
Files changed (37) hide show
  1. package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts +5 -2
  2. package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts.map +1 -1
  3. package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.js +16 -4
  4. package/esm/@ui/UiMenu/UiMenu.d.ts.map +1 -1
  5. package/esm/@ui/UiMenu/UiMenu.js +1 -1
  6. package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts +10 -3
  7. package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts.map +1 -1
  8. package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.js +18 -4
  9. package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts +3 -1
  10. package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts.map +1 -1
  11. package/esm/@ui/UiPopover/UiPopover.d.ts.map +1 -1
  12. package/esm/@ui/UiPopover/UiPopover.js +1 -1
  13. package/esm/List/LegacyList.d.ts +1 -1
  14. package/esm/List/LegacyList.d.ts.map +1 -1
  15. package/esm/List/LegacyList.js +103 -55
  16. package/esm/List/List.d.ts +1 -1
  17. package/esm/List/List.d.ts.map +1 -1
  18. package/esm/List/List.js +95 -53
  19. package/esm/Overlay/Overlay.js +2 -2
  20. package/esm/locales.d.ts +3 -0
  21. package/esm/locales.d.ts.map +1 -1
  22. package/esm/locales.js +1 -0
  23. package/esm/sdk-ui-kit.d.ts +19 -8
  24. package/package.json +12 -13
  25. package/src/@ui/UiGranteeRowControls/UiGranteeRowControls.scss +8 -0
  26. package/src/@ui/UiLabelsChecklist/UiLabelsChecklist.scss +11 -0
  27. package/src/@ui/UiMenu/UiMenu.scss +9 -0
  28. package/styles/css/insightList.css +1 -3
  29. package/styles/css/insightList.css.map +1 -1
  30. package/styles/css/list.css +14 -655
  31. package/styles/css/list.css.map +1 -1
  32. package/styles/css/main.css +33 -658
  33. package/styles/css/main.css.map +1 -1
  34. package/styles/css/menu.css +14 -655
  35. package/styles/css/menu.css.map +1 -1
  36. package/styles/scss/insightList.scss +1 -3
  37. package/styles/scss/list.scss +15 -65
@@ -53,9 +53,7 @@ $visualization-types:
53
53
  }
54
54
 
55
55
  .gd-visualizations-list {
56
- .public_fixedDataTableRow_main,
57
- .public_fixedDataTableCell_main,
58
- .fixedDataTableCellGroupLayout_cellGroup {
56
+ .gd-infinite-list-item {
59
57
  overflow: visible;
60
58
  }
61
59
  }
@@ -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
- .fixedDataTableLayout_topShadow,
465
- .fixedDataTableLayout_bottomShadow {
466
- display: none;
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
- &Active {
487
- background-color: transparent;
468
+ &::-webkit-scrollbar {
469
+ -webkit-appearance: none;
470
+ appearance: none;
471
+ width: 6px;
488
472
  }
489
473
 
490
- &:hover,
491
- &Active {
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
- &Active::after {
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
- .public_fixedDataTableRow_main,
515
- .public_fixedDataTableCell_main,
516
- .public_fixedDataTableRow_highlighted,
517
- .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
518
- background-color: transparent;
483
+ &:focus-visible {
484
+ outline: revert;
485
+ }
519
486
  }
520
487
 
521
- .public_fixedDataTableCell_cellContent {
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
  }