prompt
stringlengths 10
151
| Markdown code
stringlengths 5
232
|
---|---|
Data node selector with pins.
|
<|data_node_selector|show_pins=True|>
|
Data node selector for a specific scenario.
|
<|data_node_selector|scenario={scenario_instance}|>
|
Data node selector with custom ID.
|
<|data_node_selector|id=my_selector|>
|
Data node selector with custom class.
|
<|data_node_selector|class_name='my_class'|>
|
Data node selector with on_change callback.
|
<|data_node_selector|on_change=change_function|>
|
Data node selector in a part.
|
<|
<|data_node_selector|>
|>
|
Data node selector in a layout cell.
|
<|layout|
<|data_node_selector|>
|>
|
Data node selector with dynamic scenario binding.
|
<|data_node_selector|scenario={dynamic_scenario}|>
|
Data node selector with visible pins.
|
<|data_node_selector|show_pins=True|>
|
Data node selector with expandable viewer.
|
<|Title|expandable|
<|data_node_selector|>
|>
|
Data node selector with reduced height.
|
<|data_node_selector|height='30vh'|>
|
Data node selector showing specific scenario.
|
<|data_node_selector|scenario={specific_scenario}|>
|
Data node selector with active rendering.
|
<|data_node_selector|render=True|>
|
Data node selector with dynamic value binding.
|
<|data_node_selector|value={dynamic_value}|>
|
Data node selector inside a scenario.
|
<|scenario|
<|data_node_selector|>
|>
|
Data node selector with large toolbar.
|
<|data_node_selector|show_toolbar=True|style='font-size: large;'|>
|
Data node selector with small toolbar.
|
<|data_node_selector|show_toolbar=True|style='font-size: small;'|>
|
Data node selector with dynamic height.
|
<|data_node_selector|height={dynamic_height}|>
|
Data node selector with dynamic width.
|
<|data_node_selector|width={dynamic_width}|>
|
Data node selector with custom style.
|
<|data_node_selector|style='border: 1px solid black;'|>
|
Data node selector with full control dimensions.
|
<|data_node_selector|height='100vh'|width='100%'|>
|
Data node selector with zoom control.
|
<|data_node_selector|show_toolbar=True|style='zoom: 80%;'|>
|
Data node selector with custom toolbar style.
|
<|data_node_selector|show_toolbar=True|style='toolbar-background: gray;'|>
|
Data node selector with grouped controls.
|
<|
<|data_node_selector|>
<|{Other Control}|>
|>
|
Data node selector with specific width.
|
<|data_node_selector|width='100px'|>
|
Data node selector with specific height.
|
<|data_node_selector|height='200px'|>
|
Create a basic date selector
|
<|{dt}|date|>
|
Set up a date-only selector
|
<|{dt}|date|with_time=False|>
|
Design a date control with format and label
|
<|{appointment_date}|date|format=%Y-%m-%d|label=Appointment Date|>
|
Implement an editable date selector with hover text
|
<|{event_date}|date|editable=True|hover_text=Select Event Date|>
|
Configure a date control with propagation and full width
|
<|{birthday}|date|propagate=True|class_name=fullwidth|>
|
Create an initially inactive date selector
|
<|{inactive_date}|date|active=False|id=date-input|>
|
Set up an editable date and time control
|
<|{meeting_time}|date|with_time=True|editable=True|on_change=update_meeting_time|>
|
Design a date selector with label and full width
|
<|{holiday}|date|label=Holiday|class_name=fullwidth|>
|
Implement a date-only control with format
|
<|{start_date}|date|with_time=False|format=%d/%m/%Y|>
|
Configure a date selector with custom ID and propagation
|
<|{due_date}|date|id=due-date|propagate=True|editable=False|>
|
Create a date-time selector with custom format
|
<|{datetime}|date|with_time=True|format=%Y-%m-%d %H:%M|>
|
Set up an editable date control with label
|
<|{edit_date}|date|editable=True|label=Edit Date|class_name=fullwidth|>
|
Design a date-only selector with propagation
|
<|{only_date}|date|with_time=False|propagate=True|id=date-only|>
|
Implement a date control with format and hover text
|
<|{custom_date}|date|format=%d/%m/%Y|hover_text=Choose a Date|>
|
Configure a date-time selector with change trigger
|
<|{appointment_time}|date|with_time=True|editable=True|on_change=appointment_changed|>
|
Create an inactive date control with label
|
<|{inactive_date}|date|active=False|label=Inactive Date|class_name=fullwidth|>
|
Set up a date selector with format and hover text
|
<|{event_date}|date|format=%Y-%m-%d|propagate=True|hover_text=Event Date|>
|
Design a date-only control with custom ID
|
<|{start_date}|date|with_time=False|id=start-date|editable=True|>
|
Implement a date-time selector with label
|
<|{meeting_date}|date|with_time=True|label=Meeting Date|on_change=update_meeting_date|>
|
Configure a date control with custom format and full width
|
<|{birthday}|date|format=%d-%m-%Y|class_name=fullwidth|>
|
Display today's date
|
<|{today_date}|date|>
|
Show a date for annual review
|
<|{review_date}|date|>
|
Create a date input for event registration
|
<|{registration_date}|date|>
|
Insert a release date for a product
|
<|{release_date}|date|>
|
Display a date for a medical appointment
|
<|{medical_appointment_date}|date|>
|
Show a date for an upcoming webinar
|
<|{webinar_date}|date|>
|
Create a date picker for a vacation
|
<|{vacation_date}|date|>
|
Insert a date for a project deadline
|
<|{project_deadline_date}|date|>
|
Display a date for a team outing
|
<|{outing_date}|date|>
|
Show a due date for a report
|
<|{report_due_date}|date|>
|
Create a date selector for a survey
|
<|{survey_date}|date|>
|
Insert a joining date for new employees
|
<|{joining_date}|date|>
|
Display a date for an office party
|
<|{party_date}|date|>
|
Show a graduation date
|
<|{graduation_date}|date|>
|
Create a date for an insurance renewal
|
<|{insurance_renewal_date}|date|>
|
Insert a date for a department meeting
|
<|{department_meeting_date}|date|>
|
Display a launch date for a new service
|
<|{service_launch_date}|date|>
|
Show a date for a professional certification
|
<|{certification_date}|date|>
|
Create a date for a fitness challenge
|
<|{fitness_challenge_date}|date|>
|
Insert a date for a company milestone
|
<|{milestone_date}|date|>
|
Display a date for loan repayment
|
<|{repayment_date}|date|>
|
Show a date for a real estate closing
|
<|{closing_date}|date|>
|
Create a date selector for an academic conference
|
<|{conference_date}|date|>
|
Insert a date for a vehicle service appointment
|
<|{service_appointment_date}|date|>
|
Display a date for a product warranty expiration
|
<|{warranty_expiration_date}|date|>
|
Show a date for a family reunion
|
<|{reunion_date}|date|>
|
Create a date input for a lease agreement
|
<|{lease_date}|date|>
|
Insert a date for a book launch
|
<|{book_launch_date}|date|>
|
Display a date for a sports event
|
<|{sports_event_date}|date|>
|
Show a date for an art exhibition
|
<|{exhibition_date}|date|>
|
Create a date selector for a community meeting
|
<|{community_meeting_date}|date|>
|
Insert a date for a school play
|
<|{play_date}|date|>
|
Display a date for a photography session
|
<|{session_date}|date|>
|
Show a date for a tax submission deadline
|
<|{tax_deadline_date}|date|>
|
Create a date for a charity fundraiser
|
<|{fundraiser_date}|date|>
|
Insert a date for a technology workshop
|
<|{workshop_date}|date|>
|
Display a date for a client presentation
|
<|{presentation_date}|date|>
|
Show a date for a gardening workshop
|
<|{gardening_workshop_date}|date|>
|
Create a date selector for a music concert
|
<|{concert_date}|date|>
|
Insert a date for a culinary class
|
<|{culinary_class_date}|date|>
|
Display a date for a visa appointment
|
<|{visa_appointment_date}|date|>
|
Show a date for a home renovation start
|
<|{renovation_start_date}|date|>
|
Create a date input for a legal consultation
|
<|{consultation_date}|date|>
|
Insert a date for a vehicle registration renewal
|
<|{registration_renewal_date}|date|>
|
Display a date for a medical test
|
<|{medical_test_date}|date|>
|
Show a date for a music album release
|
<|{album_release_date}|date|>
|
Create a date selector for a hiking trip
|
<|{hiking_trip_date}|date|>
|
Insert a date for an academic term start
|
<|{term_start_date}|date|>
|
Display a date for a pet vaccination
|
<|{vaccination_date}|date|>
|
Show a date for a business license renewal
|
<|{license_renewal_date}|date|>
|
Create a date input for a dance recital
|
<|{recital_date}|date|>
|
Insert a date for a dental check-up
|
<|{dental_checkup_date}|date|>
|
Display a date for a photography contest submission
|
<|{contest_submission_date}|date|>
|
Show a date for a school admission deadline
|
<|{admission_deadline_date}|date|>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.