mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +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
4
types/FileUploader/FileUploader.svelte.d.ts
vendored
4
types/FileUploader/FileUploader.svelte.d.ts
vendored
|
@ -1,5 +1,5 @@
|
|||
/// <reference types="svelte" />
|
||||
import type { SvelteComponentTyped } from "svelte";
|
||||
import type { SvelteComponent } from "svelte";
|
||||
|
||||
export interface FileUploaderProps
|
||||
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
|
||||
|
@ -70,7 +70,7 @@ export interface FileUploaderProps
|
|||
name?: string;
|
||||
}
|
||||
|
||||
export default class FileUploader extends SvelteComponentTyped<
|
||||
export default class FileUploader extends SvelteComponent<
|
||||
FileUploaderProps,
|
||||
{
|
||||
add: CustomEvent<ReadonlyArray<File>>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue