Eric Liu
Eric Liu
Interesting, but would a Dropdown to select a month work for your use case?
Got it – feel free to open an issue in the Carbon repo as this definitely seems like a valid use case.
Can you provide a minimal repro? The [Expandable and selectable example](https://carbon-components-svelte.onrender.com/components/DataTable#expandable-and-selectable) in the docs appears to work.
This is probably a design decision by Carbon. https://github.com/carbon-design-system/carbon/issues
Related #777
Related https://github.com/carbon-design-system/carbon/issues/7264
This looks great – adding a note that it's blocked by upstream.
> ComposedModal also doesn't work in svelte-kit, possibly because of `onDestroy` using `document`? Fixed by https://github.com/carbon-design-system/carbon-components-svelte/pull/914
I'll need to investigate this further, but as a workaround I'd suggest using `TooltipDefinition` as a workaround: https://svelte.dev/repl/25e72a9ab7d74f3c839e14a6c1271fdf?version=3.46.4 ```svelte import { TextInput, TooltipDefinition } from "carbon-components-svelte"; Label ```
You can use the `tooltipAlignment` and `tooltipPosition` props to customize the orientation of the visibility toggle: ```svelte ```