@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.
@@ -8,6 +8,7 @@ export interface ChartGridConfigType {
8
8
  loading?: boolean;
9
9
  striped?: boolean;
10
10
  hoverable?: boolean;
11
+ stickyHeader?: boolean;
11
12
  emptyMessage?: string;
12
13
  loadingMessage?: string;
13
14
  noMatchMessage?: string;
@@ -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'}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aquera/nile-visualization",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "A visualization Library for the Nile Design System",
5
5
  "license": "MIT",
6
6
  "author": "Aquera Inc",