sterling-svelte  2.0.3
A modern, accessible, lightweight UI component library for Svelte.

Architecture

Prop forwarding

Components will forward props to either the associated intrinsic HTML element or the root element rendered.

For example, the Button component renders a <button/>. The Button component forwards HTMLButtonElement props to the button element.

This means you can pass any HTMLButtonProp to Button. If you specified type=submit this would override the Button components default type=button prop.

Custom callbacks vs. HTML events

Svelte provide onevent callbacks for HTML element events. These callbacks do not change the casing of the HTML event name. For example, the button click event is handled via the onclick callback.

In sterling-svelte, any custom callbacks are camel cased onEvent. For example, the callback for a tree item select events is

onSelect?: (selectedValue: string | undefined) => void;

Floating UI

Components with floating UI like Dropdown, Menu, and Select need to ensure that the dropdown UI is not hidden due to a container's overflow setting. Components use portaling to render a part of their UI as the last child of <body>.

Composition

Components support named snippets to fill in or replace content. The children snippet is used for default content.

Some props support either string or Snippet. For example, Label's text prop. If a string is passed, it is rendered as the label; otherwise {@render text()} is called.

Components also provide default content when a snippet prop is undefined. For example, TreeItem will render the expand/collapse chevron.

Cross-compoonent communication

In a components like List or Tree, it would be a burden to require callers to pass properties down the hierarchy of components (aka prop drilling). For example, passing Tree's expandedValues property to every TreeItem would be tedious. Svelte's context is used to pass contextual data down the hierarchy.

For example, Tree sets a TreeContext context that let TreeItem know if the Tree is disabled, the expanded node values, and the selected value. TreeItem sets a TreeItemContext that tells TreeItem children, if the parent is disabled and the depth of the parent.

Finding dynamically rendered elements

Components sometimes need to locate elements they didn't render. They do this with querySelector and find elements by class, role or data attributes.

For example, TreeItem finds previous and next siblings to implement up/down arrow key handling. It uses calls like querySelector('[role="treeitem"][data-value]') to locate the next sibling.

Theme Ready

Each sterling-svelte component renders HTML elements with classes and data attributes to allow theming and styling.

  • A sterling-component class is added to each root element. For example, Button renders <button class="sterling-button">.
  • Marker classes are added to child HTML elements. For example, Switch add 'off-label', 'toggle', 'thumb', and 'on-label' classes to the different child elements.
  • Classes are added based on state. For example, Tab add the 'selected' class whenever it is selected.
  • Data attributes are added based on state. For example, ListItem add the 'data-value=' attribute with their value.