@spectric/ui 0.0.15 → 0.0.16

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.
@@ -1,6 +1,6 @@
1
1
  import { LitElement, PropertyValues } from 'lit';
2
2
  import { HTMLElementTagWithEvents, ReactElementWithPropsAndEvents } from '../types';
3
- import { ColumnSettings, TableElement } from './table';
3
+ import { ColumnSettings, DomRenderable, TableElement } from './table';
4
4
  import { StyleInfo } from 'lit/directives/style-map.js';
5
5
  export declare const TableCellElementTag = "spectric-table-cell";
6
6
  interface CellProps<T> {
@@ -22,6 +22,7 @@ export declare class TableCellElement<T> extends LitElement implements CellProps
22
22
  column: ColumnSettings<T>;
23
23
  columns: ColumnSettings<T>[];
24
24
  table: TableElement<T>;
25
+ overflow: DomRenderable;
25
26
  td: HTMLTableCellElement;
26
27
  styleRules: StyleInfo;
27
28
  protected createRenderRoot(): HTMLElement | DocumentFragment;
@@ -29,6 +30,8 @@ export declare class TableCellElement<T> extends LitElement implements CellProps
29
30
  _emitFilter(filter: FilterEvent<T>): void;
30
31
  _handleFilterOut: () => void;
31
32
  _handleFilterFor: () => void;
33
+ _displayTooltip: () => void;
34
+ getRenderedValue(): any;
32
35
  protected render(): unknown;
33
36
  }
34
37
  interface TableBodyEvents {
@@ -2005,7 +2005,7 @@
2005
2005
  },
2006
2006
  {
2007
2007
  "name": "spectric-table-cell",
2008
- "description": "Pagination Element\n\nEvents:\n\n * `filter` {`CustomEvent<FilterEvent<T>>`} - \n\nProperties:\n\n * `index` {`number`} - \n\n * `columns` {`ColumnSettings<T>[]`} - \n\n * `table` {`TableElement<T>`} - \n\n * `td` {`HTMLTableCellElement`} - \n\n * `styleRules` {`StyleInfo`} - \n\n * `_handleFilterOut` - \n\n * `_handleFilterFor` - \n\n * `column` {`ColumnSettings<T>`} - \n\n * `row` {`T`} - ",
2008
+ "description": "Pagination Element\n\nEvents:\n\n * `filter` {`CustomEvent<FilterEvent<T>>`} - \n\nProperties:\n\n * `index` {`number`} - \n\n * `columns` {`ColumnSettings<T>[]`} - \n\n * `table` {`TableElement<T>`} - \n\n * `overflow` {`DomRenderable`} - \n\n * `td` {`HTMLTableCellElement`} - \n\n * `styleRules` {`StyleInfo`} - \n\n * `_handleFilterOut` - \n\n * `_handleFilterFor` - \n\n * `_displayTooltip` - \n\n * `column` {`ColumnSettings<T>`} - \n\n * `row` {`T`} - ",
2009
2009
  "attributes": [
2010
2010
  {
2011
2011
  "name": "onfilter",