Skip to content

Commit d25c84f

Browse files
authored
removing kibana_datatable in favor of datatable (#80548) (#80875)
1 parent 54b1482 commit d25c84f

File tree

159 files changed

+711
-1101
lines changed

Some content is hidden

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

159 files changed

+711
-1101
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: KibanaDatatable;
11+
table: Datatable;
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: KibanaDatatable;</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: Datatable;</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<KibanaDatatable, 'rows' | 'columns'>;
12+
table: Pick<Datatable, '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;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> | |
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> | |
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`<!-- -->.
7+
This type represents the `type` of any `DatatableColumn` in a `Datatable`<!-- -->. its duplicated from KBN\_FIELD\_TYPES
88

99
<b>Signature:</b>
1010

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

docs/development/plugins/expressions/public/kibana-plugin-plugins-expressions-public.kibanadatatable.columns.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

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

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/development/plugins/expressions/public/kibana-plugin-plugins-expressions-public.kibanadatatable.rows.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/development/plugins/expressions/public/kibana-plugin-plugins-expressions-public.kibanadatatable.type.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/development/plugins/expressions/public/kibana-plugin-plugins-expressions-public.kibanadatatablecolumn.formathint.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)