From 3bd79986f72f903c9af8d9a04fef98651ddb1bd2 Mon Sep 17 00:00:00 2001 From: c727 Date: Tue, 19 Jun 2018 23:30:08 +0200 Subject: [PATCH] List available card types (#35) * List available card types * Move to separate file * Remove from introduction --- docs/frontend_experiment_card_types.md | 56 ++++++++++++++++++++++++++ website/sidebars.json | 1 + 2 files changed, 57 insertions(+) create mode 100644 docs/frontend_experiment_card_types.md diff --git a/docs/frontend_experiment_card_types.md b/docs/frontend_experiment_card_types.md new file mode 100644 index 00000000..2d1fe6a9 --- /dev/null +++ b/docs/frontend_experiment_card_types.md @@ -0,0 +1,56 @@ +--- +title: "Type Of Cards" +sidebar_label: Cards +--- + +These cards are WIP and things may change. + +## Camera preview + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| type | string | **Required** | `camera-preview` +| entity | string | **Required** | Entity id of `camera` domain + +## Entities + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| type | string | **Required** | `entities` +| entities | list | **Required** | Entity id's +| title | string | `None` | Card title + +## Entity filter + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| type | string | **Required** | `entitiey-filter` +(wip: check introduction meanwhile) + +## History graph + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| type | string | **Required** | `history-graph` +| entity | string | **Required** | Entity id of `history_graph` domain + +## Media controler + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| type | string | **Required** | `media-control` +| entity | string | **Required** | Entity id of `media_player` domain + +## Plant info + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| type | string | **Required** | `plant-status` +| entity | string | **Required** | Entity id of `plant` domain + +## Weather forecast + +| Name | Type | Default | Description +| ---- | ---- | ------- | ----------- +| type | string | **Required** | `weather-forecast` +| entity | string | **Required** | Entity id of `weather` domain diff --git a/website/sidebars.json b/website/sidebars.json index d0f8832b..16edbb5d 100644 --- a/website/sidebars.json +++ b/website/sidebars.json @@ -58,6 +58,7 @@ ], "Experimental UI": [ "frontend_experiment_index", + "frontend_experiment_card_types", "frontend_experiment_custom_card" ] },