mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
fix(types): add missing $$restProps
for Checkbox
, Filename
, FluidForm
(#1655)
* fix(types): add missing `$$restProps` for `Checkbox`, `Filename`, `FluidForm` * Run "yarn build:docs" * test: assert `$$restProps` for `Checkbox`, `Form`
This commit is contained in:
parent
2a8fc00a09
commit
6450e8b0b1
9 changed files with 22 additions and 8 deletions
5
types/FileUploader/Filename.svelte.d.ts
vendored
5
types/FileUploader/Filename.svelte.d.ts
vendored
|
@ -1,7 +1,10 @@
|
|||
/// <reference types="svelte" />
|
||||
import type { SvelteComponentTyped } from "svelte";
|
||||
|
||||
export interface FilenameProps {
|
||||
export interface FilenameProps
|
||||
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]>,
|
||||
svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["button"]>,
|
||||
svelte.JSX.SVGAttributes<SVGSVGElement> {
|
||||
/**
|
||||
* Specify the file name status
|
||||
* @default "uploading"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue