Skip to content

Commit 6eeab00

Browse files
committed
Revert "removing kibana_datatable in favor of datatable` (#75184)"
This reverts commit 255b865.
1 parent 5bf7966 commit 6eeab00

File tree

143 files changed

+1099
-708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+1099
-708
lines changed

docs/development/plugins/embeddable/public/kibana-plugin-plugins-embeddable-public.rangeselectcontext.data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
```typescript
1010
data: {
11-
table: Datatable;
11+
table: KibanaDatatable;
1212
column: number;
1313
range: number[];
1414
timeFieldName?: string;

docs/development/plugins/embeddable/public/kibana-plugin-plugins-embeddable-public.rangeselectcontext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export interface RangeSelectContext<T extends IEmbeddable = IEmbeddable>
1414

1515
| Property | Type | Description |
1616
| --- | --- | --- |
17-
| [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> | |
17+
| [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> | |
1818
| [embeddable](./kibana-plugin-plugins-embeddable-public.rangeselectcontext.embeddable.md) | <code>T</code> | |
1919

docs/development/plugins/embeddable/public/kibana-plugin-plugins-embeddable-public.valueclickcontext.data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
```typescript
1010
data: {
1111
data: Array<{
12-
table: Pick<Datatable, 'rows' | 'columns'>;
12+
table: Pick<KibanaDatatable, 'rows' | 'columns'>;
1313
column: number;
1414
row: number;
1515
value: any;

docs/development/plugins/embeddable/public/kibana-plugin-plugins-embeddable-public.valueclickcontext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export interface ValueClickContext<T extends IEmbeddable = IEmbeddable>
1414

1515
| Property | Type | Description |
1616
| --- | --- | --- |
17-
| [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> | |
17+
| [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> | |
1818
| [embeddable](./kibana-plugin-plugins-embeddable-public.valueclickcontext.embeddable.md) | <code>T</code> | |
1919

docs/development/plugins/expressions/public/kibana-plugin-plugins-expressions-public.datatablecolumntype.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
## DatatableColumnType type
66

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

99
<b>Signature:</b>
1010

1111
```typescript
12-
export declare type DatatableColumnType = '_source' | 'attachment' | 'boolean' | 'date' | 'geo_point' | 'geo_shape' | 'ip' | 'murmur3' | 'number' | 'string' | 'unknown' | 'conflict' | 'object' | 'nested' | 'histogram' | 'null';
12+
export declare type DatatableColumnType = 'string' | 'number' | 'boolean' | 'date' | 'null';
1313
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-expressions-public](./kibana-plugin-plugins-expressions-public.md) &gt; [KibanaDatatable](./kibana-plugin-plugins-expressions-public.kibanadatatable.md) &gt; [columns](./kibana-plugin-plugins-expressions-public.kibanadatatable.columns.md)
4+
5+
## KibanaDatatable.columns property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
columns: KibanaDatatableColumn[];
11+
```
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-expressions-public](./kibana-plugin-plugins-expressions-public.md) &gt; [KibanaDatatable](./kibana-plugin-plugins-expressions-public.kibanadatatable.md)
4+
5+
## KibanaDatatable interface
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
export interface KibanaDatatable
11+
```
12+
13+
## Properties
14+
15+
| Property | Type | Description |
16+
| --- | --- | --- |
17+
| [columns](./kibana-plugin-plugins-expressions-public.kibanadatatable.columns.md) | <code>KibanaDatatableColumn[]</code> | |
18+
| [rows](./kibana-plugin-plugins-expressions-public.kibanadatatable.rows.md) | <code>KibanaDatatableRow[]</code> | |
19+
| [type](./kibana-plugin-plugins-expressions-public.kibanadatatable.type.md) | <code>typeof name</code> | |
20+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-expressions-public](./kibana-plugin-plugins-expressions-public.md) &gt; [KibanaDatatable](./kibana-plugin-plugins-expressions-public.kibanadatatable.md) &gt; [rows](./kibana-plugin-plugins-expressions-public.kibanadatatable.rows.md)
4+
5+
## KibanaDatatable.rows property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
rows: KibanaDatatableRow[];
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-expressions-public](./kibana-plugin-plugins-expressions-public.md) &gt; [KibanaDatatable](./kibana-plugin-plugins-expressions-public.kibanadatatable.md) &gt; [type](./kibana-plugin-plugins-expressions-public.kibanadatatable.type.md)
4+
5+
## KibanaDatatable.type property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
type: typeof name;
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-expressions-public](./kibana-plugin-plugins-expressions-public.md) &gt; [KibanaDatatableColumn](./kibana-plugin-plugins-expressions-public.kibanadatatablecolumn.md) &gt; [formatHint](./kibana-plugin-plugins-expressions-public.kibanadatatablecolumn.formathint.md)
4+
5+
## KibanaDatatableColumn.formatHint property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
formatHint?: SerializedFieldFormat;
11+
```

0 commit comments

Comments
 (0)