mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 20:09:35 +00:00
Merge 89bd587dc2
into 27da2a0f8b
This commit is contained in:
commit
5bf0d0f901
23 changed files with 24 additions and 24 deletions
4
types/Button/Button.svelte.d.ts
vendored
4
types/Button/Button.svelte.d.ts
vendored
|
@ -90,9 +90,9 @@ export interface ButtonProps
|
|||
|
||||
/**
|
||||
* Specify the tabindex
|
||||
* @default "0"
|
||||
* @default 0
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Specify the `type` attribute for the button element
|
||||
|
|
2
types/DataTable/ToolbarSearch.svelte.d.ts
vendored
2
types/DataTable/ToolbarSearch.svelte.d.ts
vendored
|
@ -54,7 +54,7 @@ export interface ToolbarSearchProps
|
|||
* Specify the tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Obtain a reference to the input HTML element
|
||||
|
|
|
@ -55,7 +55,7 @@ export interface FileUploaderButtonProps
|
|||
* Specify `tabindex` attribute
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Set an id for the input element
|
||||
|
|
|
@ -50,7 +50,7 @@ export interface FileUploaderDropContainerProps
|
|||
* Specify `tabindex` attribute
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Set an id for the input element
|
||||
|
|
2
types/ListBox/ListBoxField.svelte.d.ts
vendored
2
types/ListBox/ListBoxField.svelte.d.ts
vendored
|
@ -21,7 +21,7 @@ export interface ListBoxFieldProps
|
|||
* Specify the tabindex
|
||||
* @default "-1"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Override the default translation ids
|
||||
|
|
|
@ -19,7 +19,7 @@ export interface StructuredListRowProps
|
|||
* Specify the tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
}
|
||||
|
||||
export default class StructuredListRow extends SvelteComponentTyped<
|
||||
|
|
2
types/Tabs/Tab.svelte.d.ts
vendored
2
types/Tabs/Tab.svelte.d.ts
vendored
|
@ -26,7 +26,7 @@ export interface TabProps
|
|||
* Specify the tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Set an id for the top-level element
|
||||
|
|
2
types/Tile/ExpandableTile.svelte.d.ts
vendored
2
types/Tile/ExpandableTile.svelte.d.ts
vendored
|
@ -55,7 +55,7 @@ export interface ExpandableTileProps
|
|||
* Specify the tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Set an id for the top-level div element
|
||||
|
|
2
types/Tile/RadioTile.svelte.d.ts
vendored
2
types/Tile/RadioTile.svelte.d.ts
vendored
|
@ -31,7 +31,7 @@ export interface RadioTileProps
|
|||
* Specify the tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Specify the ARIA label for the radio tile checkmark icon
|
||||
|
|
2
types/Tile/SelectableTile.svelte.d.ts
vendored
2
types/Tile/SelectableTile.svelte.d.ts
vendored
|
@ -37,7 +37,7 @@ export interface SelectableTileProps
|
|||
* Specify the tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Specify the ARIA label for the selectable tile checkmark icon
|
||||
|
|
2
types/Tooltip/Tooltip.svelte.d.ts
vendored
2
types/Tooltip/Tooltip.svelte.d.ts
vendored
|
@ -50,7 +50,7 @@ export interface TooltipProps
|
|||
* Set the button tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* Set an id for the tooltip
|
||||
|
|
2
types/UIShell/SkipToContent.svelte.d.ts
vendored
2
types/UIShell/SkipToContent.svelte.d.ts
vendored
|
@ -13,7 +13,7 @@ export interface SkipToContentProps
|
|||
* Specify the tabindex
|
||||
* @default "0"
|
||||
*/
|
||||
tabindex?: string;
|
||||
tabindex?: number;
|
||||
|
||||
/**
|
||||
* SvelteKit attribute to enable data prefetching
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue