mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 11:11:25 +00:00
- add ref prop for applicable components (#196) - add slot to Content Switcher `Switch` component (#183) - remove fillArray, css utilities
26 lines
714 B
Svelte
26 lines
714 B
Svelte
<script>
|
|
export let range = false;
|
|
export let id = "ccs-" + Math.random().toString(36);
|
|
</script>
|
|
|
|
<div
|
|
class:bx--form-item={true}
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave>
|
|
<div
|
|
class:bx--date-picker={true}
|
|
class:bx--skeleton={true}
|
|
class:bx--date-picker--range={true}
|
|
class:bx--date-picker--short={!range}
|
|
class:bx--date-picker--simple={!range}>
|
|
{#each Array.from({ length: range ? 2 : 1 }, (_, i) => i) as input, i (input)}
|
|
<div class:bx--date-picker-container={true}>
|
|
<label for={id} class:bx--label={true} />
|
|
<div class:bx--date-picker__input={true} class:bx--skeleton={true} />
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
</div>
|