bootstack.DateField#

class bootstack.DateField(value=None, *, signal=None, value_format='longDate', label=None, message=None, textsignal=None, show_picker_button=True, picker_title=None, picker_first_weekday=6, selection_mode='single', range_start=None, range_end=None, min_date=None, max_date=None, disabled_dates=None, required=False, disabled=False, read_only=False, accent=None, density=None, parent=None, **kwargs)#

Bases: ValueSignalMixin, FieldAddonMixin, PublicWidgetBase

A date input field with an optional calendar picker button.

In 'single' mode value returns a date; in 'range' mode it returns a (start, end) tuple of dates.

Parameters:
  • value (Any) – Initial date value — a date object or an ISO string ('YYYY-MM-DD'). None for an empty field.

  • value_format (str) – Format applied to the displayed date — a named preset (e.g. 'shortDate', 'longDate') or a custom pattern (e.g. 'dd.MM.yy'). Default 'longDate'. See format specs.

  • label (str | None) – Label displayed above the field.

  • message (str | None) – Hint text displayed below the field.

  • signal (Signal | None) – Reactive Signal two-way bound to the field’s date value (not its text). When given, it seeds the initial value. This is the usual way to bind a date field.

  • textsignal (Signal[str] | None) – Reactive Signal[str] bound to the field’s raw text rather than its date value. Niche; prefer signal.

  • show_picker_button (bool) – Show the calendar icon button. Default True.

  • picker_title (str | None) – Title of the picker dialog.

  • picker_first_weekday (int) – First day of week in the picker (0=Mon … 6=Sun). Default 6 (Sunday).

  • selection_mode (Literal['single', 'range']) – Single date or a start/end range. In range mode the entry is read-only and dates must be selected via the picker. Default 'single'.

  • range_start (date | str | None) – Pre-selected range start date (range mode only).

  • range_end (date | str | None) – Pre-selected range end date (range mode only).

  • min_date (date | str | None) – Earliest selectable date.

  • max_date (date | str | None) – Latest selectable date.

  • disabled_dates (Iterable[date | str] | None) – Dates that cannot be selected.

  • required (bool) – Mark field as required; blocks empty submission.

  • disabled (bool) – If True, field is non-interactive.

  • read_only (bool) – If True, value is visible but not editable.

  • accent (AccentToken | str | None) – Accent color applied to the focus ring. Default 'primary'.

  • density (WidgetDensity | None) – Widget density.

  • parent (Any) – Override the context-stack parent.

  • **kwargs (Any) – Layout placement options applied by the parent container — fill, expand, anchor, margin, row, column, sticky. See Layout & Spacing.

property addons: dict[str, Any]#

Named addon widgets inserted via insert_addon().

property disabled: bool#

Whether the field is disabled (non-interactive and greyed out).

property disabled_dates: tuple[date, ...]#

Dates disabled in the picker. Assigning a new iterable takes effect the next time it opens.

property is_attached: bool#

Whether the widget is currently placed in its layout.

True while the widget occupies space in its parent; False after detach (or before it has ever been placed). A detached widget keeps its state and can be returned to the layout with attach.

property max_date: date | None#

Latest selectable date. Assigning takes effect the next time the picker opens.

property min_date: date | None#

Earliest selectable date. Assigning takes effect the next time the picker opens.

property picker_button#

The calendar picker button widget, or None if hidden.

property read_only: bool#

Whether the field is read-only (selectable but not editable).

property schedule: Schedule#

Scheduler tied to this widget’s lifetime.

All jobs are automatically cancelled when the widget is destroyed. First access creates the Schedule instance; subsequent accesses return the same instance.

Usage:

self.schedule.delay(500, callback)
self.schedule.every(1000, tick)
job = self.schedule.idle(refresh)
job.cancel()
property signal: Signal | None#

The reactive Signal bound to this field’s value, or None.

property text: str#

The current display text shown in the field.

This is the formatted string the user sees, as opposed to value, which is the raw parsed datum (e.g. for a DateField, text is 'Jan 2, 2024' while value is a date). Read-only — assign to value to change it.

property value: date | tuple[date, date] | None#

Selected date, or (start, end) tuple in range mode.

add_validation_rule(rule_type, **kwargs)#

Add a validation rule to this field.

Parameters:

rule_type (RuleType) – The kind of validation rule to apply.

attach(**kwargs)#

Return a detached widget to its layout, optionally moving it.

With no arguments, restores the widget to exactly where detach took it from. Any layout kwargs accepted by the original placement (e.g. fill, expand, anchor, sticky, margin) override the stored options. For stacked widgets, index= sets the position among the currently attached siblings (or pass an explicit before=/after= sibling); without one, the snapshotted position is used.

Calling attach on a widget that is already attached moves it (the kwargs are re-applied). Fires on_attach.

Parameters:

**kwargs (Any) – Layout placement options to override for this placement.

Raises:

ParentResolutionError – If the widget was never placed in a layout.

clear()#

Clear the field, setting the value to None.

destroy()#

Destroy the widget and release the resources it holds.

Removes the widget from its parent, destroys its children, and cancels any pending or repeating jobs on its schedule. After this the widget must not be used again. Destroying a container destroys everything inside it.

detach()#

Remove the widget from its layout without destroying it.

The widget stops occupying space but keeps its state, children, and event bindings, ready to be returned with attach. The current position is snapshotted so a plain attach() restores it exactly — for stacked siblings this is the index among the currently attached siblings, so detaching other siblings first shifts that index.

Calling detach on a widget that is already detached, or one that was never placed in a layout, does nothing. Fires on_detach.

emit(event, *, data=None)#

Fire a named event on this widget, as if it produced the event itself.

This is how a composite widget surfaces high-level activity to its listeners, and the generic counterpart to the on_*() shorthands for firing events that have no dedicated method.

Parameters:
  • event (str) – The event name, unprefixed — the same name you pass to on() or an on_<event>() shorthand (e.g. 'change', 'select').

  • data (Any) – The payload delivered to handlers. For a data-carrying event, pass the matching payload dataclass from bootstack.events — the same object an on_<event>() handler receives. Leave as None for native events (click, hover, focus, …), which carry no payload.

Example

widget.emit("change", data=bs.events.ChangeEvent(value=new_value))
focus()#

Give keyboard focus to this field.

get_clipboard()#

Return the current text contents of the system clipboard.

Returns:

The clipboard text, or an empty string when the clipboard is empty or holds non-text data.

Return type:

str

insert_addon(widget, position, *, name=None, text=None, icon=None, accent=None, on_click=None, signal=None, active_when_readonly=False)#

Insert a small widget inside the field border, before or after the input.

Use this for affordances such as a clear button, a search icon, a unit suffix label, or an on/off toggle.

Parameters:
  • widget (Literal['button', 'label', 'toggle']) – Addon type — 'button' (clickable), 'label' (static text or icon), or 'toggle' (on/off control).

  • position (Literal['before', 'after']) – 'before' (left of the input) or 'after' (right).

  • name (str | None) – Key to retrieve the addon later via addons. Auto-generated if omitted.

  • text (str | None) – Text shown on the addon. Applies to any addon type.

  • icon (str | None) – Bootstrap Icons name shown on the addon (e.g. 'search', 'x-lg'). An icon-only addon is rendered when icon is given without text.

  • accent (AccentToken | str | None) – Accent token for the addon. Prefer an accent for a text-only button.

  • on_click (Callable[[], Any] | None) – Called with no arguments when a 'button' or 'toggle' addon is activated.

  • signal (Signal | None) – Reactive Signal[bool] bound to a 'toggle' addon’s on/off state.

  • active_when_readonly (bool) – Keep the addon interactive while the field is read-only. Off by default, so addons follow the field’s read-only state — appropriate since most act on the value (a clear button, the spin buttons). Set True only for a read-only-safe action such as a copy or reveal button; it still dims when the field is fully disabled.

Returns:

The created addon widget instance.

Return type:

Any

on(event: str) Stream#
on(event: str, handler: Callable[[Event], Any]) Subscription

Register a callback for an event by name.

A generic, string-keyed escape hatch — prefer the typed on_* shorthands (e.g. on_change), which carry the precise payload type. Called with no handler, returns a composable Stream; with a handler, binds it and returns a Subscription.

Parameters:
  • event (str) – Event name (for example 'change' or 'focus').

  • handler (Callable[[Event], Any] | None) – Called with the event payload. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_attach(handler=None)#

Register a callback fired when the widget enters the layout.

Fires each time the widget becomes visible in its parent — on initial placement and on every attach. Pair it with on_detach to keep per-visibility resources (timers, observers) tied to the widget’s presence on screen. The handler receives a curated Event.

Parameters:

handler (Callable[[Event], Any] | None) – Called when the widget is attached. Omit to get a composable Stream.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_blur() Stream#
on_blur(handler: Callable[[Event], Any]) Subscription

Register a callback fired when the field loses keyboard focus.

Parameters:

handler (Callable[[Event], Any] | None) – Called with an Event. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_change() Stream#
on_change(handler: Callable[[ChangeEvent], Any]) Subscription

Register a callback fired when the selected date changes.

Parameters:

handler (Callable[[ChangeEvent], Any] | None) – Called with a ChangeEvent. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_destroy(handler=None)#

Register a callback fired when the widget is destroyed.

Fires once, as the widget is torn down — the place to release resources the widget owns that aren’t cleaned up automatically (file handles, observers, external subscriptions). The handler receives a curated Event.

Parameters:

handler (Callable[[Event], Any] | None) – Called as the widget is destroyed. Omit to get a composable Stream.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_detach(handler=None)#

Register a callback fired when the widget leaves the layout.

Fires each time the widget stops occupying space in its parent — on detach and when an ancestor hides it. Pair it with on_attach to release per-visibility resources. The handler receives a curated Event.

Parameters:

handler (Callable[[Event], Any] | None) – Called when the widget is detached. Omit to get a composable Stream.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_focus() Stream#
on_focus(handler: Callable[[Event], Any]) Subscription

Register a callback fired when the field gains keyboard focus.

Parameters:

handler (Callable[[Event], Any] | None) – Called with an Event. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_invalid() Stream#
on_invalid(handler: Callable[[ValidationEvent], Any]) Subscription

Register a callback fired when validation fails.

Parameters:

handler (Callable[[ValidationEvent], Any] | None) – Called with a ValidationEvent. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_submit() Stream#
on_submit(handler: Callable[[Event], Any]) Subscription

Register a callback fired when the user presses Return to confirm input.

Parameters:

handler (Callable[[Event], Any] | None) – Called with an Event. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_valid() Stream#
on_valid(handler: Callable[[ValidationEvent], Any]) Subscription

Register a callback fired when validation passes.

Parameters:

handler (Callable[[ValidationEvent], Any] | None) – Called with a ValidationEvent. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

on_validate() Stream#
on_validate(handler: Callable[[ValidationEvent], Any]) Subscription

Register a callback fired when a validation check runs.

Parameters:

handler (Callable[[ValidationEvent], Any] | None) – Called with a ValidationEvent. Omit to get a composable Stream instead.

Returns:

A cancellable Subscription when a handler is given, otherwise a Stream.

Return type:

Stream | Subscription

remove_addon(name)#

Remove an addon inserted with insert_addon().

Parameters:

name (str) – The addon’s name (as passed to insert_addon).

Raises:

KeyError – If no addon with that name exists.

set_clipboard(text)#

Replace the system clipboard contents with text.

Parameters:

text (str) – The text to place on the clipboard.

update_addon(name, *, text=None, icon=None, accent=None, on_click=None)#

Reconfigure an existing addon in place.

Only the options you pass are changed. Use this, for example, to flip a toggle addon’s label between two units, or swap a button’s icon.

Parameters:
  • name (str) – The addon’s name (as passed to insert_addon).

  • text (str | None) – New text for the addon.

  • icon (str | None) – New Bootstrap Icons name for the addon.

  • accent (AccentToken | str | None) – New accent token for the addon.

  • on_click (Callable[[], Any] | None) – New click handler for a 'button' or 'toggle' addon.

Raises:

KeyError – If no addon with that name exists.

validate()#

Run validation rules against the current value.

Returns:

True if all rules pass, False otherwise.

Return type:

bool