Skip to content
Snippets Groups Projects

Fix/tablevis export

Merged Samed requested to merge fix/tablevis_export into main
2 unresolved threads

BUG:table vis export button - icons not working

Changes:

  • Changed overflow from hidden to visible in buttons.module.scss
  • Added new .exported class with translation transform

Pagination Component:

  • Replaced icon-based navigation with custom SVG arrows
  • Updated class names and structure for better responsiveness
  • Modified display of items count with separate spans and semantic classes

Table Visualization

  • Improved "Unique values" display with better styling and layout
  • Added whitespace control and font styling classes
  • Restructured DOM elements for better semantics
  • Improved exportImage functionality with proper element cloning and cleanup

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
36 36 }
37 37 };
38 38
39 const backIcon = arrangement === 'vertical' ? 'icon-[ic--baseline-arrow-upward]' : 'icon-[ic--baseline-arrow-back]';
40 const forwardIcon = arrangement === 'vertical' ? 'icon-[ic--baseline-arrow-downward]' : 'icon-[ic--baseline-arrow-forward]';
41
39 const backIcon = <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24">
  • 296 296 )
    297 297 ) : (
    298 298 <div className="font-normal mx-auto flex flex-row items-start justify-center w-full gap-1 text-center text-secondary-700 p-1">
    299 <span className="text-2xs overflow-x-hidden truncate">Unique values:</span>
    300 <span className="text-xs shrink-0">{data2Render[index]?.numElements}</span>
    299 <div className="flex items-center space-x-1 whitespace-nowrap">
    300 <span className="text-2xs">Unique values:</span>
  • added 16 commits

    Compare with previous version

  • Leonardo Christino enabled an automatic merge when all merge checks for b7c4049f pass

    enabled an automatic merge when all merge checks for b7c4049f pass

  • :tada: This MR is included in version 1.114.1 :tada:

    The release is available on GitLab release.

    Your semantic-release bot :package: :rocket:

  • Please register or sign in to reply
    Loading