Make v10 Tabs work with v11 css classes

In v11 [Tabs](https://carbondesignsystem.com/migrating/guide/design/#tabs-breaking) received some additional modifiers. In this commit we only want to make sure that the Svelte v10 tabs still work using v11 styles. This probably needs additional testing.
This commit is contained in:
Gregor Wassmann 2022-11-04 21:00:36 +01:00
commit 0eac2e94da
7 changed files with 52 additions and 77 deletions

View file

@ -36,10 +36,6 @@ export interface TabsProps
export default class Tabs extends SvelteComponentTyped<
TabsProps,
{
keypress: WindowEventMap["keypress"];
click: WindowEventMap["click"];
change: CustomEvent<any>;
},
{ change: CustomEvent<any> },
{ default: {}; content: {} }
> {}