# Svelte Material UI - Common Components Common Label and Icon components, Element component, and helper utilities. # Installation ```sh npm install --save-dev @smui/common ``` # Examples and Usage Information https://sveltematerialui.com/demo/common # Exports ## Label A common label. The common label is used everywhere that exports a `Label` component. ### Props / Defaults - `component`: `Span` - A component to use as the root element. - `use`: `[]` - An array of Svelte actions and/or arrays of an action and its options. - `class`: `''` - A CSS class string. ## Icon A common icon. The common icon is used everywhere that exports an `Icon` component except for `textfield` and `select`. ### Props / Defaults - `component`: `I` - A component to use as the root element. - `use`: `[]` - An array of Svelte actions and/or arrays of an action and its options. - `class`: `''` - A CSS class string. - `on`: `false` - Used in the context of an icon button toggle to denote the icon for when the button is on. ## SmuiElement A dynamic HTML element component. ### Props / Defaults - `use`: `[]` - An array of Svelte actions and/or arrays of an action and its options. - `tag`: `'div'` - An HTML tag name to use as the element. ## Svg An SVG tag component. This is separated from the `SmuiElement` component, because it returns a `SVGSVGElement` object, which does not implement the `HTMLElement` interface. ### Props / Defaults - `use`: `[]` - An array of Svelte actions and/or arrays of an action and its options. # Event Modifiers Event modifiers are exported from the `@smui/common/events` endpoint. You can use them with the event system introduced in Svelte 5. ## once Fire an event listener only once. ```svelte ``` ## preventDefault Call `preventDefault()` on the event. ```svelte ``` ## selfEvent Only run the event listener when `event.target === event.currentTarget`. ```svelte ``` ## stopImmediatePropagation Call `stopImmediatePropagation()` on the event. ```svelte ``` ## stopPropagation Call `stopPropagation()` on the event. ```svelte ``` ## trustedEvent Only run the event listener when `event.isTrusted` is true. ```svelte ``` # Helper Utilities Helper utilities are exported from the `@smui/common/internal` endpoint. They are used within SMUI to provide additional functionality outside of the features the Svelte API is natively capable of. You can use them in your own components to provide the same additional functionality. `classAdderBuilder` uses internal Svelte features. Since it depends on `svelte/internal`, you should consider use of it the same way you consider use of `svelte/internal` directly. ## classMap Build a class string from a map of class names to conditions. This is useful when you need to add classes to a component, since Svelte's "class:" directives don't work on components. (It's also useful for actions that take `addClass` and `removeClass` functions.) ```svelte I've got class. ``` ## dispatch Dispatch a custom event. This differs from Svelte's component event system, because these events require a DOM element as a target, can bubble (and do by default), and are cancelable with `event.preventDefault()`. All SMUI events are dispatched with this instead of Svelte's `createEventDispatcher`. ```svelte
``` ## exclude Exclude a set of properties from an object. It differs from normal `omit` functions by also excluding all properties that begin with a given string if that string ends with "$". It is usually used along with `prefixFilter` to allow props to be given to multiple elements within a component. ```svelte
``` ```svelte (disabled = true)} > Click Me Only Once ``` ## prefixFilter Filter an object for only properties with a certain prefix. It is usually used along with `exclude` to allow props to be given to multiple elements within a component. ```svelte
``` ```svelte (disabled = true)} > Click Me Only Once ``` ## useActions An action that takes actions and runs them on the element. Used to allow actions on components, and forward actions from one component to another, until the ultimate component finally renders the DOM element. ```svelte
{@render children?.()}
``` ```svelte I use an action! I use two actions! And one has options! ``` ## announce A function that announces a string of text to users who are using a screen reader. ```svelte ``` # Other Components These components are not exported in the index file, but are available to be imported elsewhere. They are generally used for simple components which only add a class to an element. ## ContextFragment.svelte A fragment component (only contains a `{@render children?.()}`) used to define a Svelte context with a Svelte store. ### Props / Defaults - `key`: `undefined` - The key of the Svelte context. - `value`: `undefined` - The value of the store contained in the Svelte context. The store will be updated when the value changes. ## classadder/ClassAdder.svelte Use this to make a ClassAdder component. ```svelte } {...restProps}>{@render children?.()} ``` You can also supply a component that implements the `SmuiComponent` interface. ```svelte } {...restProps}>{@render children?.()} ``` ### Props / Defaults - `component`: `SmuiElement` - An SMUI compatible component. - `tag`: `'div'` - An HTML tag name. (Only means anything for the `SmuiElement` component.) - `_smuiClass`: `''` - The class to add. - `_smuiClassMap`: `{}` - A map of classes to contexts. The context should resolve to a Svelte store, and the class will be added if the Svelte store's value is true. - `_smuiContexts`: `{}` - A map of contexts to values to set for them. - `_smuiProps`: `{}` - A map of props to add to the element.