mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 19:46:36 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
8eba7fbb3d
commit
8fe66f548c
4 changed files with 11 additions and 6 deletions
|
@ -924,7 +924,7 @@
|
||||||
{ "type": "forwarded", "name": "blur", "element": "input" }
|
{ "type": "forwarded", "name": "blur", "element": "input" }
|
||||||
],
|
],
|
||||||
"typedefs": [],
|
"typedefs": [],
|
||||||
"rest_props": { "type": "InlineComponent", "name": "CheckboxSkeleton" }
|
"rest_props": { "type": "Element", "name": "div" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleName": "CheckboxSkeleton",
|
"moduleName": "CheckboxSkeleton",
|
||||||
|
@ -4399,7 +4399,7 @@
|
||||||
{ "type": "forwarded", "name": "keydown", "element": "button" }
|
{ "type": "forwarded", "name": "keydown", "element": "button" }
|
||||||
],
|
],
|
||||||
"typedefs": [],
|
"typedefs": [],
|
||||||
"rest_props": { "type": "InlineComponent", "name": "Loading" }
|
"rest_props": { "type": "Element", "name": "div | button | svg" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleName": "FluidForm",
|
"moduleName": "FluidForm",
|
||||||
|
@ -4416,7 +4416,7 @@
|
||||||
{ "type": "forwarded", "name": "submit", "element": "Form" }
|
{ "type": "forwarded", "name": "submit", "element": "Form" }
|
||||||
],
|
],
|
||||||
"typedefs": [],
|
"typedefs": [],
|
||||||
"rest_props": { "type": "InlineComponent", "name": "Form" }
|
"rest_props": { "type": "Element", "name": "form" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleName": "Form",
|
"moduleName": "Form",
|
||||||
|
|
3
types/Checkbox/Checkbox.svelte.d.ts
vendored
3
types/Checkbox/Checkbox.svelte.d.ts
vendored
|
@ -1,7 +1,8 @@
|
||||||
/// <reference types="svelte" />
|
/// <reference types="svelte" />
|
||||||
import type { SvelteComponentTyped } from "svelte";
|
import type { SvelteComponentTyped } from "svelte";
|
||||||
|
|
||||||
export interface CheckboxProps {
|
export interface CheckboxProps
|
||||||
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
|
||||||
/**
|
/**
|
||||||
* Specify the value of the checkbox
|
* Specify the value of the checkbox
|
||||||
* @default ""
|
* @default ""
|
||||||
|
|
5
types/FileUploader/Filename.svelte.d.ts
vendored
5
types/FileUploader/Filename.svelte.d.ts
vendored
|
@ -1,7 +1,10 @@
|
||||||
/// <reference types="svelte" />
|
/// <reference types="svelte" />
|
||||||
import type { SvelteComponentTyped } from "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
|
* Specify the file name status
|
||||||
* @default "uploading"
|
* @default "uploading"
|
||||||
|
|
3
types/FluidForm/FluidForm.svelte.d.ts
vendored
3
types/FluidForm/FluidForm.svelte.d.ts
vendored
|
@ -1,7 +1,8 @@
|
||||||
/// <reference types="svelte" />
|
/// <reference types="svelte" />
|
||||||
import type { SvelteComponentTyped } from "svelte";
|
import type { SvelteComponentTyped } from "svelte";
|
||||||
|
|
||||||
export interface FluidFormProps {}
|
export interface FluidFormProps
|
||||||
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["form"]> {}
|
||||||
|
|
||||||
export default class FluidForm extends SvelteComponentTyped<
|
export default class FluidForm extends SvelteComponentTyped<
|
||||||
FluidFormProps,
|
FluidFormProps,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue