mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 11:11:25 +00:00
feat(portal): support portal
This commit is contained in:
parent
0ea3d9351e
commit
1ddd9ba1a5
14 changed files with 240 additions and 2 deletions
9
types/Portal/FloatingPortal.svelte.d.ts
vendored
Normal file
9
types/Portal/FloatingPortal.svelte.d.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
import type { SvelteComponentTyped } from "svelte";
|
||||
|
||||
export type FloatingPortalProps = {};
|
||||
|
||||
export default class FloatingPortal extends SvelteComponentTyped<
|
||||
FloatingPortalProps,
|
||||
Record<string, any>,
|
||||
{}
|
||||
> {}
|
9
types/Portal/Portal.svelte.d.ts
vendored
Normal file
9
types/Portal/Portal.svelte.d.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
import type { SvelteComponentTyped } from "svelte";
|
||||
|
||||
export type PortalProps = {};
|
||||
|
||||
export default class Portal extends SvelteComponentTyped<
|
||||
PortalProps,
|
||||
Record<string, any>,
|
||||
{ default: {} }
|
||||
> {}
|
Loading…
Add table
Add a link
Reference in a new issue