Commit
·
84b63e9
1
Parent(s):
e28a0c8
Create date.jsonl
Browse files- date.jsonl +60 -0
date.jsonl
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"prompt": "Basic date selector", "code": "<|{dt}|date|>"}
|
2 |
+
{"prompt": "Date selector without time", "code": "<|{dt}|date|with_time=False|>"}
|
3 |
+
{"prompt": "Date control with specific format", "code": "<|{appointment_date}|date|format=%Y-%m-%d|>"}
|
4 |
+
{"prompt": "Editable date selector with hover text", "code": "<|{event_date}|date|editable=True|hover_text=Select Event Date|>"}
|
5 |
+
{"prompt": "Date control with propagation and class name", "code": "<|{birthday}|date|propagate=True|class_name=fullwidth|>"}
|
6 |
+
{"prompt": "Initially inactive date selector", "code": "<|{inactive_date}|date|active=False|id=date-input|>"}
|
7 |
+
{"prompt": "Date control with time, editable", "code": "<|{meeting_time}|date|with_time=True|editable=True|on_change=update_meeting_time|>"}
|
8 |
+
{"prompt": "Date selector with label and full-width", "code": "<|{holiday}|date|label=Holiday|hover_text=Choose a Holiday Date|class_name=fullwidth|>"}
|
9 |
+
{"prompt": "Date control displaying only date with format", "code": "<|{start_date}|date|with_time=False|format=%d/%m/%Y|active=True|>"}
|
10 |
+
{"prompt": "Date selector with custom identifier and properties", "code": "<|{due_date}|date|id=due-date|propagate=True|editable=False|>"}
|
11 |
+
{"prompt": "Date selector with time and custom format", "code": "<|{datetime}|date|with_time=True|format=%Y-%m-%d %H:%M|hover_text=Select Date and Time|>"}
|
12 |
+
{"prompt": "Editable date control with label and style", "code": "<|{edit_date}|date|editable=True|label=Edit Date|class_name=fullwidth|>"}
|
13 |
+
{"prompt": "Date selector with propagation and identifier", "code": "<|{only_date}|date|with_time=False|propagate=True|id=date-only|>"}
|
14 |
+
{"prompt": "Date control with custom format and hover text", "code": "<|{custom_date}|date|format=%d/%m/%Y|active=True|hover_text=Choose a Date|>"}
|
15 |
+
{"prompt": "Editable date selector with time", "code": "<|{appointment_time}|date|with_time=True|editable=True|on_change=appointment_changed|>"}
|
16 |
+
{"prompt": "Initially inactive date control with label", "code": "<|{inactive_date}|date|active=False|label=Inactive Date|class_name=fullwidth|>"}
|
17 |
+
{"prompt": "Date selector with format and propagation", "code": "<|{event_date}|date|format=%Y-%m-%d|propagate=True|hover_text=Event Date|>"}
|
18 |
+
{"prompt": "Date control with identifier and editable property", "code": "<|{start_date}|date|with_time=False|id=start-date|editable=True|>"}
|
19 |
+
{"prompt": "Date selector with time and label", "code": "<|{meeting_date}|date|with_time=True|label=Meeting Date|on_change=update_meeting_date|>"}
|
20 |
+
{"prompt": "Date control with format and active state", "code": "<|{birthday}|date|format=%d-%m-%Y|active=True|class_name=fullwidth|>"}
|
21 |
+
{"prompt": "Date selector with custom class", "code": "<|{date}|date|class_name='custom-class'|>"}
|
22 |
+
{"prompt": "Date control with label", "code": "<|{date}|date|label='Select Date'|>"}
|
23 |
+
{"prompt": "Editable date selector", "code": "<|{date}|date|editable=True|>"}
|
24 |
+
{"prompt": "Date control with minimum date", "code": "<|{date}|date|min='2021-01-01'|>"}
|
25 |
+
{"prompt": "Date selector with maximum date", "code": "<|{date}|date|max='2023-12-31'|>"}
|
26 |
+
{"prompt": "Date control with hover text", "code": "<|{date}|date|hover_text='Choose Date'|>"}
|
27 |
+
{"prompt": "Date selector with specific format", "code": "<|{date}|date|format='DD-MM-YYYY'|>"}
|
28 |
+
{"prompt": "Date control with default value", "code": "<|{date}|date|default='today'|>"}
|
29 |
+
{"prompt": "Editable date selector with custom format", "code": "<|{date}|date|editable=True|format='MM/DD/YYYY'|>"}
|
30 |
+
{"prompt": "Date control with propagation", "code": "<|{date}|date|propagate=True|>"}
|
31 |
+
{"prompt": "Date selector with specific width", "code": "<|{date}|date|width='200px'|>"}
|
32 |
+
{"prompt": "Date control with specific height", "code": "<|{date}|date|height='40px'|>"}
|
33 |
+
{"prompt": "Date selector with custom identifier", "code": "<|{date}|date|id='date-input'|>"}
|
34 |
+
{"prompt": "Date control with label alignment", "code": "<|{date}|date|label_align='right'|>"}
|
35 |
+
{"prompt": "Date selector with time part", "code": "<|{date}|date|with_time=True|>"}
|
36 |
+
{"prompt": "Date control with disabled state", "code": "<|{date}|date|disabled=True|>"}
|
37 |
+
{"prompt": "Date selector with placeholder", "code": "<|{date}|date|placeholder='YYYY-MM-DD'|>"}
|
38 |
+
{"prompt": "Date control with custom color", "code": "<|{date}|date|color='blue'|>"}
|
39 |
+
{"prompt": "Date selector with full-width style", "code": "<|{date}|date|class_name='fullwidth'|>"}
|
40 |
+
{"prompt": "Date control with custom border", "code": "<|{date}|date|border='1px solid gray'|>"}
|
41 |
+
{"prompt": "Date selector with time disabled", "code": "<|{date}|date|with_time=False|>"}
|
42 |
+
{"prompt": "Date control with custom hover color", "code": "<|{date}|date|hover_color='lightblue'|>"}
|
43 |
+
{"prompt": "Editable date selector with custom width", "code": "<|{date}|date|editable=True|width='250px'|>"}
|
44 |
+
{"prompt": "Date control with specific format and label alignment", "code": "<|{date}|date|format='%B %d, %Y'|label_align='left'|>"}
|
45 |
+
{"prompt": "Date selector with custom border radius", "code": "<|{date}|date|border_radius='5px'|>"}
|
46 |
+
{"prompt": "Date control with full date and time", "code": "<|{date}|date|with_time=True|>"}
|
47 |
+
{"prompt": "Date selector with minimum and maximum dates", "code": "<|{date}|date|min='2020-01-01'|max='2025-12-31'|>"}
|
48 |
+
{"prompt": "Date control with disabled editability", "code": "<|{date}|date|editable=False|>"}
|
49 |
+
{"prompt": "Date selector with custom label style", "code": "<|{date}|date|label_style='italic'|>"}
|
50 |
+
{"prompt": "Date control with custom font size", "code": "<|{date}|date|font_size='14px'|>"}
|
51 |
+
{"prompt": "Date selector with label and placeholder", "code": "<|{date}|date|label='Date'|placeholder='Select a date'|>"}
|
52 |
+
{"prompt": "Date control with specific hover text", "code": "<|{date}|date|hover_text='Pick a date'|>"}
|
53 |
+
{"prompt": "Date selector with custom background color", "code": "<|{date}|date|background_color='yellow'|>"}
|
54 |
+
{"prompt": "Date control with active state", "code": "<|{date}|date|active=True|>"}
|
55 |
+
{"prompt": "Date selector with custom identifier and label", "code": "<|{date}|date|id='custom-date'|label='Event Date'|>"}
|
56 |
+
{"prompt": "Date control with custom alignment", "code": "<|{date}|date|align='right'|>"}
|
57 |
+
{"prompt": "Date selector with inline display", "code": "<|{date}|date|display='inline'|>"}
|
58 |
+
{"prompt": "Date control with custom label color", "code": "<|{date}|date|label_color='green'|>"}
|
59 |
+
{"prompt": "Date selector with time and custom format", "code": "<|{date}|date|with_time=True|format='%I:%M %p'|>"}
|
60 |
+
{"prompt": "Date control with full-width and custom border style", "code": "<|{date}|date|class_name='fullwidth'|border_style='dashed'|>"}
|