diff --git a/configuration.yaml b/configuration.yaml index 888fbab..74770cd 100644 --- a/configuration.yaml +++ b/configuration.yaml @@ -23,6 +23,7 @@ input_select: !include input_select.yaml input_text: !include input_text.yaml input_datetime: !include input_datetime.yaml template: !include template.yaml +input_number: !include input_number.yaml frontend: themes: !include_dir_merge_named themes diff --git a/input_boolean.yaml b/input_boolean.yaml index 50f3e03..fb0431a 100644 --- a/input_boolean.yaml +++ b/input_boolean.yaml @@ -31,3 +31,6 @@ night_mode: early_night_mode: name: Early Night Mode icon: mdi:lightbulb-night-outline +toggle_testing: + name: Toggle Testing + icon: mdi:test-tube \ No newline at end of file diff --git a/input_number.yaml b/input_number.yaml new file mode 100644 index 0000000..d7c15d6 --- /dev/null +++ b/input_number.yaml @@ -0,0 +1,14 @@ +number_box_test: + name: Number Box Test + min: -100 + max: 100 + step: 1 + mode: box + icon: mdi:test-tube +number_slider_test: + name: Number Slider Test + min: -100 + max: 100 + step: 1 + mode: slider + icon: mdi:test-tube \ No newline at end of file diff --git a/input_select.yaml b/input_select.yaml index aafb0ea..1f3411a 100644 --- a/input_select.yaml +++ b/input_select.yaml @@ -35,4 +35,14 @@ report_type: - Bug Report - New Idea initial: Bug Report - icon: mdi:bug \ No newline at end of file + icon: mdi:bug +select_testing: + name: Select Testing + options: + - One + - Two + - Three + - Four + - Five + initial: One + icon: mdi:test-tube \ No newline at end of file diff --git a/input_text.yaml b/input_text.yaml index 8d25656..e61296f 100644 --- a/input_text.yaml +++ b/input_text.yaml @@ -3,4 +3,7 @@ tts_message: initial: Type your message here report_system: name: Report System - initial: Type your report here \ No newline at end of file + initial: Type your report here +text_testing: + name: Text Testing + initial: This is for testing input texts \ No newline at end of file