mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
chore(changelog): 0.10.0 notes
This commit is contained in:
parent
78cf1b3460
commit
9b6284a139
4 changed files with 46 additions and 4 deletions
16
types/index.d.ts
vendored
16
types/index.d.ts
vendored
|
@ -1,4 +1,4 @@
|
|||
// Type definitions for carbon-components-svelte 0.9.6
|
||||
// Type definitions for carbon-components-svelte 0.10.0
|
||||
// Project: https://github.com/IBM/carbon-components-svelte
|
||||
|
||||
export class CarbonSvelteComponent {
|
||||
|
@ -208,6 +208,14 @@ export class Button extends CarbonSvelteComponent {
|
|||
}
|
||||
|
||||
export class ButtonSet extends CarbonSvelteComponent {
|
||||
$$prop_def: {
|
||||
/**
|
||||
* Set to `true` to stack the buttons vertically
|
||||
* @default false
|
||||
*/
|
||||
stacked?: boolean;
|
||||
};
|
||||
|
||||
$$slot_def: { default: {} };
|
||||
}
|
||||
|
||||
|
@ -4385,6 +4393,12 @@ export class TextInput extends CarbonSvelteComponent {
|
|||
* @default null
|
||||
*/
|
||||
ref?: null | HTMLInputElement;
|
||||
|
||||
/**
|
||||
* Set to `true` to mark the field as required
|
||||
* @default false
|
||||
*/
|
||||
required?: boolean;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue