@aquera/nile-visualization 1.4.0 → 1.5.0
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.
|
@@ -897,8 +897,7 @@ let NileChart = class NileChart extends NileElement {
|
|
|
897
897
|
case 'grid': {
|
|
898
898
|
const gridChrome = '--nile-data-grid-radius:0;' +
|
|
899
899
|
'--nile-data-grid-border-color:transparent;' +
|
|
900
|
-
'--nile-data-grid-shadow:none;'
|
|
901
|
-
'display:block;';
|
|
900
|
+
'--nile-data-grid-shadow:none;';
|
|
902
901
|
const gridStyle = config.height
|
|
903
902
|
? `${gridChrome}height:${config.height};`
|
|
904
903
|
: gridChrome;
|
|
@@ -909,6 +908,7 @@ let NileChart = class NileChart extends NileElement {
|
|
|
909
908
|
.loading=${config.loading ?? false}
|
|
910
909
|
.striped=${config.striped ?? false}
|
|
911
910
|
.hoverable=${config.hoverable ?? false}
|
|
911
|
+
.stickyHeader=${config.stickyHeader ?? false}
|
|
912
912
|
.emptyMessage=${config.emptyMessage ?? 'No data'}
|
|
913
913
|
.loadingMessage=${config.loadingMessage ?? 'Loading\u2026'}
|
|
914
914
|
.noMatchMessage=${config.noMatchMessage ?? 'No matching rows'}
|