mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 19:46:36 +00:00
chore: migrate to svelte-4
- Use `SvelteComponent` instead of `SvelteComponentTyped` - use `local` transitions for backwards-compatibility
This commit is contained in:
parent
d1534c3e8f
commit
56488e7375
189 changed files with 508 additions and 377 deletions
|
@ -1,10 +1,10 @@
|
|||
/// <reference types="svelte" />
|
||||
import type { SvelteComponentTyped } from "svelte";
|
||||
import type { SvelteComponent } from "svelte";
|
||||
|
||||
export interface PaginationSkeletonProps
|
||||
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {}
|
||||
|
||||
export default class PaginationSkeleton extends SvelteComponentTyped<
|
||||
export default class PaginationSkeleton extends SvelteComponent<
|
||||
PaginationSkeletonProps,
|
||||
{
|
||||
click: WindowEventMap["click"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue