panel icon indicating copy to clipboard operation
panel copied to clipboard

Update Tabulator to 6.2.1

Open hoxbro opened this issue 1 month ago • 2 comments

Supersede #6478

selectable -> selectableRows in https://tabulator.info/docs/5.6/upgrade#selection

I don't plan to expose any new functionality in this PR. This can be done in follow-up PRs.

hoxbro avatar May 16 '24 06:05 hoxbro

Codecov Report

Attention: Patch coverage is 46.66667% with 8 lines in your changes are missing coverage. Please review.

Project coverage is 81.50%. Comparing base (7377c9e) to head (4ac5f0c). Report is 4 commits behind head on main.

Files Patch % Lines
panel/compiler.py 11.11% 8 Missing :warning:
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #6840      +/-   ##
==========================================
- Coverage   81.51%   81.50%   -0.02%     
==========================================
  Files         318      318              
  Lines       46709    46722      +13     
==========================================
+ Hits        38076    38079       +3     
- Misses       8633     8643      +10     

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

codecov[bot] avatar May 16 '24 07:05 codecov[bot]

The failing UI tests are because of this upstream issue: https://github.com/olifolkerd/tabulator/issues/4421

import panel as pn
import pandas as pd

pn.extension('tabulator')

df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})

pn.widgets.Tabulator(df, disabled=True).servable()

hoxbro avatar May 16 '24 10:05 hoxbro