Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removing kibana_datatable in favor of datatable` #75184

Merged
merged 18 commits into from
Oct 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

```typescript
data: {
table: KibanaDatatable;
table: Datatable;
column: number;
range: number[];
timeFieldName?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export interface RangeSelectContext<T extends IEmbeddable = IEmbeddable>

| Property | Type | Description |
| --- | --- | --- |
| [data](./kibana-plugin-plugins-embeddable-public.rangeselectcontext.data.md) | <code>{</code><br/><code> table: KibanaDatatable;</code><br/><code> column: number;</code><br/><code> range: number[];</code><br/><code> timeFieldName?: string;</code><br/><code> }</code> | |
| [data](./kibana-plugin-plugins-embeddable-public.rangeselectcontext.data.md) | <code>{</code><br/><code> table: Datatable;</code><br/><code> column: number;</code><br/><code> range: number[];</code><br/><code> timeFieldName?: string;</code><br/><code> }</code> | |
| [embeddable](./kibana-plugin-plugins-embeddable-public.rangeselectcontext.embeddable.md) | <code>T</code> | |

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
```typescript
data: {
data: Array<{
table: Pick<KibanaDatatable, 'rows' | 'columns'>;
table: Pick<Datatable, 'rows' | 'columns'>;
column: number;
row: number;
value: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export interface ValueClickContext<T extends IEmbeddable = IEmbeddable>

| Property | Type | Description |
| --- | --- | --- |
| [data](./kibana-plugin-plugins-embeddable-public.valueclickcontext.data.md) | <code>{</code><br/><code> data: Array&lt;{</code><br/><code> table: Pick&lt;KibanaDatatable, 'rows' &#124; 'columns'&gt;;</code><br/><code> column: number;</code><br/><code> row: number;</code><br/><code> value: any;</code><br/><code> }&gt;;</code><br/><code> timeFieldName?: string;</code><br/><code> negate?: boolean;</code><br/><code> }</code> | |
| [data](./kibana-plugin-plugins-embeddable-public.valueclickcontext.data.md) | <code>{</code><br/><code> data: Array&lt;{</code><br/><code> table: Pick&lt;Datatable, 'rows' &#124; 'columns'&gt;;</code><br/><code> column: number;</code><br/><code> row: number;</code><br/><code> value: any;</code><br/><code> }&gt;;</code><br/><code> timeFieldName?: string;</code><br/><code> negate?: boolean;</code><br/><code> }</code> | |
| [embeddable](./kibana-plugin-plugins-embeddable-public.valueclickcontext.embeddable.md) | <code>T</code> | |

Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

## DatatableColumnType type

This type represents the `type` of any `DatatableColumn` in a `Datatable`<!-- -->.
This type represents the `type` of any `DatatableColumn` in a `Datatable`<!-- -->. its duplicated from KBN\_FIELD\_TYPES

<b>Signature:</b>

```typescript
export declare type DatatableColumnType = 'string' | 'number' | 'boolean' | 'date' | 'null';
export declare type DatatableColumnType = '_source' | 'attachment' | 'boolean' | 'date' | 'geo_point' | 'geo_shape' | 'ip' | 'murmur3' | 'number' | 'string' | 'unknown' | 'conflict' | 'object' | 'nested' | 'histogram' | 'null';
```

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@
| [IExpressionLoaderParams](./kibana-plugin-plugins-expressions-public.iexpressionloaderparams.md) | |
| [IInterpreterRenderHandlers](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.md) | |
| [IRegistry](./kibana-plugin-plugins-expressions-public.iregistry.md) | |
| [KibanaDatatable](./kibana-plugin-plugins-expressions-public.kibanadatatable.md) | |
| [KibanaDatatableColumn](./kibana-plugin-plugins-expressions-public.kibanadatatablecolumn.md) | |
| [KibanaDatatableColumnMeta](./kibana-plugin-plugins-expressions-public.kibanadatatablecolumnmeta.md) | |
| [KibanaDatatableRow](./kibana-plugin-plugins-expressions-public.kibanadatatablerow.md) | |
| [PointSeriesColumn](./kibana-plugin-plugins-expressions-public.pointseriescolumn.md) | Column in a PointSeries |
| [Range](./kibana-plugin-plugins-expressions-public.range.md) | |
| [ReactExpressionRendererProps](./kibana-plugin-plugins-expressions-public.reactexpressionrendererprops.md) | |
Expand All @@ -97,7 +93,7 @@
| [AnyExpressionFunctionDefinition](./kibana-plugin-plugins-expressions-public.anyexpressionfunctiondefinition.md) | Type to capture every possible expression function definition. |
| [AnyExpressionTypeDefinition](./kibana-plugin-plugins-expressions-public.anyexpressiontypedefinition.md) | |
| [ArgumentType](./kibana-plugin-plugins-expressions-public.argumenttype.md) | This type represents all of the possible combinations of properties of an Argument in an Expression Function. The presence or absence of certain fields influence the shape and presence of others within each <code>arg</code> in the specification. |
| [DatatableColumnType](./kibana-plugin-plugins-expressions-public.datatablecolumntype.md) | This type represents the <code>type</code> of any <code>DatatableColumn</code> in a <code>Datatable</code>. |
| [DatatableColumnType](./kibana-plugin-plugins-expressions-public.datatablecolumntype.md) | This type represents the <code>type</code> of any <code>DatatableColumn</code> in a <code>Datatable</code>. its duplicated from KBN\_FIELD\_TYPES |
| [DatatableRow](./kibana-plugin-plugins-expressions-public.datatablerow.md) | This type represents a row in a <code>Datatable</code>. |
| [ExecutionContainer](./kibana-plugin-plugins-expressions-public.executioncontainer.md) | |
| [ExecutorContainer](./kibana-plugin-plugins-expressions-public.executorcontainer.md) | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

## DatatableColumnType type

This type represents the `type` of any `DatatableColumn` in a `Datatable`<!-- -->.
This type represents the `type` of any `DatatableColumn` in a `Datatable`<!-- -->. its duplicated from KBN\_FIELD\_TYPES

<b>Signature:</b>

```typescript
export declare type DatatableColumnType = 'string' | 'number' | 'boolean' | 'date' | 'null';
export declare type DatatableColumnType = '_source' | 'attachment' | 'boolean' | 'date' | 'geo_point' | 'geo_shape' | 'ip' | 'murmur3' | 'number' | 'string' | 'unknown' | 'conflict' | 'object' | 'nested' | 'histogram' | 'null';
```

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading