thanhnew2001
commited on
Commit
•
f2d3a59
1
Parent(s):
c605ded
Create input.jsonl
Browse files- input.jsonl +35 -0
input.jsonl
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"prompt": "Create input with label", "Markdown code": "<|{input_value}|input|label=Input Value|>"}
|
2 |
+
{"prompt": "Create input with delay", "Markdown code": "<|{delay_input}|input|change_delay=500|>"}
|
3 |
+
{"prompt": "Create input with action key", "Markdown code": "<|{action_key_input}|input|on_action=perform_action|action_keys=Enter|>"}
|
4 |
+
{"prompt": "Create input with hover text", "Markdown code": "<|{hover_input}|input|hover_text=Enter Text|>"}
|
5 |
+
{"prompt": "Create multiline input", "Markdown code": "<|{multiline_input}|input|multiline=True|>"}
|
6 |
+
{"prompt": "Create password input", "Markdown code": "<|{password_input}|input|password=True|>"}
|
7 |
+
{"prompt": "Create input with custom class", "Markdown code": "<|{custom_class_input}|input|class_name=custom-input|>"}
|
8 |
+
{"prompt": "Create input with value callback", "Markdown code": "<|{value_callback_input}|input|on_change=update_value|>"}
|
9 |
+
{"prompt": "Create input initially inactive", "Markdown code": "<|{inactive_input}|input|active=False|>"}
|
10 |
+
{"prompt": "Add input with custom class", "Markdown code": "<|{add_custom_class_input}|input|class_name=custom-input|>"}
|
11 |
+
{"prompt": "Add input with hover text", "Markdown code": "<|{add_hover_input}|input|hover_text=Enter Text|>"}
|
12 |
+
{"prompt": "Add multiline input", "Markdown code": "<|{add_multiline_input}|input|multiline=True|>"}
|
13 |
+
{"prompt": "Add password input", "Markdown code": "<|{add_password_input}|input|password=True|>"}
|
14 |
+
{"prompt": "Display input with value", "Markdown code": "<|{display_value_input}|input|value=Displayed Value|>"}
|
15 |
+
{"prompt": "Display multiline input", "Markdown code": "<|{display_multiline_input}|input|multiline=True|value=Multi-line Text|>"}
|
16 |
+
{"prompt": "Display password input", "Markdown code": "<|{display_password_input}|input|password=True|value=********|>"}
|
17 |
+
{"prompt": "Display input with custom width", "Markdown code": "<|{display_custom_width_input}|input|value=Wide Input|>"}
|
18 |
+
{"prompt": "Insert input with label", "Markdown code": "<|{insert_label_input}|input|label=Insert Label|>"}
|
19 |
+
{"prompt": "Insert input with custom class", "Markdown code": "<|{insert_custom_class_input}|input|class_name=custom-input|>"}
|
20 |
+
{"prompt": "Insert input with hover text", "Markdown code": "<|{insert_hover_input}|input|hover_text=Enter Text|>"}
|
21 |
+
{"prompt": "Insert multiline input", "Markdown code": "<|{insert_multiline_input}|input|multiline=True|>"}
|
22 |
+
{"prompt": "Insert password input", "Markdown code": "<|{insert_password_input}|input|password=True|>"}
|
23 |
+
{"prompt": "Show input with custom ID", "Markdown code": "<|{show_custom_id_input}|input|id=custom-input-id|>"}
|
24 |
+
{"prompt": "Show input with multiple lines shown", "Markdown code": "<|{show_lines_shown_input}|input|lines_shown=3|>"}
|
25 |
+
{"prompt": "Create input with label", "Markdown code": "<|{input_value}|input|label=Input Value|>"}
|
26 |
+
{"prompt": "Create input with delay", "Markdown code": "<|{delay_input}|input|change_delay=500|>"}
|
27 |
+
{"prompt": "Create input with hover text", "Markdown code": "<|{hover_input}|input|hover_text=Enter Text|>"}
|
28 |
+
{"prompt": "Create multiline input", "Markdown code": "<|{multiline_input}|input|multiline=True|>"}
|
29 |
+
{"prompt": "Create password input", "Markdown code": "<|{password_input}|input|password=True|>"}
|
30 |
+
{"prompt": "Create input with custom class", "Markdown code": "<|{custom_class_input}|input|class_name=custom-input|>"}
|
31 |
+
{"prompt": "Create input initially inactive", "Markdown code": "<|{inactive_input}|input|active=False|>"}
|
32 |
+
{"prompt": "Add input initially inactive", "Markdown code": "<|{inactive_input}|input|active=False|>"}
|
33 |
+
{"prompt": "Show input with custom class", "Markdown code": "<|{custom_class_input}|input|class_name=highlighted|>"}
|
34 |
+
{"prompt": "Show input with hover text", "Markdown code": "<|{hover_input}|input|hover_text=Info Here|>"}
|
35 |
+
{"prompt": "Display input initially inactive", "Markdown code": "<|{inactive_input}|input|active=False|>"}
|