Package Exports
- @smui/chips
- @smui/chips/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@smui/chips) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Svelte Material UI - Chips
Chips are used to show discrete information, filter options, input tags, or actions.
Installation
npm install --save-dev @smui/chipsExamples and Usage Information
https://sveltematerialui.com/demo/chips
Exports
(default)
A chip.
Props / Defaults
use:[]- An array of Svelte actions and/or arrays of an action and its options.class:''- A CSS class string.ripple:true- Whether to implement a ripple for when the component is interacted with.touch:false- Increase the touch target.shouldRemoveOnTrailingIconClick:true- Whether the chip should be removed upon clicking the trailing icon.shouldFocusPrimaryActionOnClick:true- Whether the chip should focus the primary action when it is clicked.
Events
MDCChip:interactionMDCChip:selectionMDCChip:removalMDCChip:trailingIconInteractionMDCChip:navigation
Set
A set of chips. Chips should only be added onto the end of the set's chip array.
Props / Defaults
use:[]- An array of Svelte actions and/or arrays of an action and its options.class:''- A CSS class string.chips[]- An array containing the chips.keychip => chip- A function used to get the key of the chip. Chip sets that have removable chips should always provide unique keys.selectedundefined- The currently selected chip or chips.choicefalse- Whether to present the chips as a set of choices, allowing one to be chosen.filterfalse- Whether to present the chips as a set of options, allowing any number to be chosen.inputfalse- Whether to present the chips as a set of values, allowing them to be removed.
Text
A text label.
todo...
LeadingIcon
A graphic icon.
todo...
TrailingIcon
A graphic icon.
todo...
TrailingAction
A graphic icon.
todo...
More Information
See Chips in the Material design spec.
See Chips in MDC-Web for information about the upstream library's architecture.