mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
v0.16.0
This commit is contained in:
parent
b6c805e062
commit
2acbb2ba5d
4 changed files with 56 additions and 6 deletions
13
types/index.d.ts
vendored
13
types/index.d.ts
vendored
|
@ -1,4 +1,4 @@
|
|||
// Type definitions for carbon-components-svelte 0.15.0
|
||||
// Type definitions for carbon-components-svelte 0.16.0
|
||||
// Project: https://github.com/IBM/carbon-components-svelte
|
||||
|
||||
export class CarbonSvelteComponent {
|
||||
|
@ -2019,6 +2019,12 @@ export class ListBoxMenu extends CarbonSvelteComponent {
|
|||
* Set an id for the top-level element
|
||||
*/
|
||||
id?: string;
|
||||
|
||||
/**
|
||||
* Obtain a reference to the input HTML element
|
||||
* @default null
|
||||
*/
|
||||
ref?: null | HTMLDivElement;
|
||||
};
|
||||
|
||||
$$slot_def: { default: {} };
|
||||
|
@ -3275,6 +3281,11 @@ export class RadioButtonGroup extends CarbonSvelteComponent {
|
|||
* @default "horizontal"
|
||||
*/
|
||||
orientation?: "horizontal" | "vertical";
|
||||
|
||||
/**
|
||||
* Set an id for the container div element
|
||||
*/
|
||||
id?: string;
|
||||
};
|
||||
|
||||
$$slot_def: { default: {} };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue