14 lines
727 B
Plaintext
14 lines
727 B
Plaintext
component RecurringSchedulePicker {
|
|
props {
|
|
id = "recurring-schedule"
|
|
name = "recurrence"
|
|
label = "Repeat"
|
|
value = "none"
|
|
disabled = false
|
|
class = ""
|
|
}
|
|
view {
|
|
<div class="wire-field {class}"><label for="{id}" class="wire-label">{label}</label><select id="{id}" name="{name}" disabled="{disabled}" class="wire-input"><option value="none" selected="{value === 'none'}">Does not repeat</option><option value="daily" selected="{value === 'daily'}">Daily</option><option value="weekly" selected="{value === 'weekly'}">Weekly</option><option value="monthly" selected="{value === 'monthly'}">Monthly</option><option value="yearly" selected="{value === 'yearly'}">Yearly</option></select></div>
|
|
}
|
|
}
|