mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 12:23:02 +00:00
yarn build:lib
This commit is contained in:
parent
c416b20e49
commit
67043ddf90
3 changed files with 15 additions and 1 deletions
|
@ -4426,6 +4426,8 @@ export type CarbonTheme = "white" | "g10" | "g80" | "g90" | "g100";
|
||||||
|
|
||||||
| Slot name | Default | Props | Fallback |
|
| Slot name | Default | Props | Fallback |
|
||||||
| :-------- | :------ | :---- | :----------------------- |
|
| :-------- | :------ | :---- | :----------------------- |
|
||||||
|
| labelA | No | -- | <code>{labelA}</code> |
|
||||||
|
| labelB | No | -- | <code>{labelB}</code> |
|
||||||
| labelText | No | -- | <code>{labelText}</code> |
|
| labelText | No | -- | <code>{labelText}</code> |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
|
@ -12440,6 +12440,18 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"slots": [
|
"slots": [
|
||||||
|
{
|
||||||
|
"name": "labelA",
|
||||||
|
"default": false,
|
||||||
|
"fallback": "{labelA}",
|
||||||
|
"slot_props": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "labelB",
|
||||||
|
"default": false,
|
||||||
|
"fallback": "{labelB}",
|
||||||
|
"slot_props": "{}"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "labelText",
|
"name": "labelText",
|
||||||
"default": false,
|
"default": false,
|
||||||
|
|
2
types/Toggle/Toggle.svelte.d.ts
vendored
2
types/Toggle/Toggle.svelte.d.ts
vendored
|
@ -64,5 +64,5 @@ export default class Toggle extends SvelteComponentTyped<
|
||||||
focus: WindowEventMap["focus"];
|
focus: WindowEventMap["focus"];
|
||||||
blur: WindowEventMap["blur"];
|
blur: WindowEventMap["blur"];
|
||||||
},
|
},
|
||||||
{ labelText: {} }
|
{ labelA: {}; labelB: {}; labelText: {} }
|
||||||
> {}
|
> {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue