mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
* chore(deps-dev): upgrade carbon-components to v10.35
* feat(tooltip-icon): add icon prop
This allows consumers to pass a Carbon icon as a prop instead of using the default slot.
* fix(tooltip): make screenreader description less verbose
Ref: b5f40d8fc
* feat(search): allow custom search icon
Allows consumers to render a different Carbon icon instead of the default Search16 icon.
* feat(number-input): add hideSteppers prop
Allows consumers to hide the input stepper buttons.
* feat: support expressive styles for Button, UnorderedList, OrderedList
* feat(button): support large size button
Set size to "lg" to use the large size.
* feat(button-skeleton): support xl, lg sizes
* docs(button): add "lg" size to expressive styles example
* feat(file-uploader-item): support field, small sizes
* feat(tooltip-icon): support disabled state
24 lines
536 B
Svelte
24 lines
536 B
Svelte
<script>
|
|
/** Set to `true` to use the nested variant */
|
|
export let nested = false;
|
|
|
|
/** Set to `true` to use native list styles */
|
|
export let native = false;
|
|
|
|
/** Set to `true` to use Carbon's expressive typesetting */
|
|
export let expressive = false;
|
|
</script>
|
|
|
|
<ol
|
|
class:bx--list--ordered="{!native}"
|
|
class:bx--list--ordered--native="{native}"
|
|
class:bx--list--nested="{nested}"
|
|
class:bx--list--expressive="{expressive}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<slot />
|
|
</ol>
|