diff --git a/src/Button/Button.svelte b/src/Button/Button.svelte index 3f552730..033be0b3 100644 --- a/src/Button/Button.svelte +++ b/src/Button/Button.svelte @@ -69,7 +69,7 @@ export let href = undefined; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0; /** Specify the `type` attribute for the button element */ export let type = "button"; diff --git a/src/DataTable/ToolbarSearch.svelte b/src/DataTable/ToolbarSearch.svelte index 94a88969..ef83527c 100644 --- a/src/DataTable/ToolbarSearch.svelte +++ b/src/DataTable/ToolbarSearch.svelte @@ -35,7 +35,7 @@ export let filteredRowIds = []; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0; /** * Obtain a reference to the input HTML element diff --git a/src/FileUploader/FileUploaderButton.svelte b/src/FileUploader/FileUploaderButton.svelte index 7a626f64..ccb3cf6a 100644 --- a/src/FileUploader/FileUploaderButton.svelte +++ b/src/FileUploader/FileUploaderButton.svelte @@ -37,7 +37,7 @@ export let role = "button"; /** Specify `tabindex` attribute */ - export let tabindex = "0"; + export let tabindex = 0; /** Set an id for the input element */ export let id = "ccs-" + Math.random().toString(36); diff --git a/src/FileUploader/FileUploaderDropContainer.svelte b/src/FileUploader/FileUploaderDropContainer.svelte index e0648f88..b86558d9 100644 --- a/src/FileUploader/FileUploaderDropContainer.svelte +++ b/src/FileUploader/FileUploaderDropContainer.svelte @@ -36,7 +36,7 @@ export let disabled = false; /** Specify `tabindex` attribute */ - export let tabindex = "0"; + export let tabindex = 0; /** Set an id for the input element */ export let id = "ccs-" + Math.random().toString(36); diff --git a/src/StructuredList/StructuredListRow.svelte b/src/StructuredList/StructuredListRow.svelte index 0fcb6108..9cc710df 100644 --- a/src/StructuredList/StructuredListRow.svelte +++ b/src/StructuredList/StructuredListRow.svelte @@ -6,7 +6,7 @@ export let label = false; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0; diff --git a/src/Tabs/Tab.svelte b/src/Tabs/Tab.svelte index b99e50f9..1fc73618 100644 --- a/src/Tabs/Tab.svelte +++ b/src/Tabs/Tab.svelte @@ -12,7 +12,7 @@ export let disabled = false; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0; /** Set an id for the top-level element */ export let id = "ccs-" + Math.random().toString(36); diff --git a/src/Tile/ExpandableTile.svelte b/src/Tile/ExpandableTile.svelte index 14b10297..ad3f83ea 100644 --- a/src/Tile/ExpandableTile.svelte +++ b/src/Tile/ExpandableTile.svelte @@ -24,7 +24,7 @@ export let tileCollapsedLabel = ""; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0; /** Set an id for the top-level div element */ export let id = "ccs-" + Math.random().toString(36); diff --git a/src/Tile/RadioTile.svelte b/src/Tile/RadioTile.svelte index c672711f..06936285 100644 --- a/src/Tile/RadioTile.svelte +++ b/src/Tile/RadioTile.svelte @@ -12,7 +12,7 @@ export let value = ""; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0; /** Specify the ARIA label for the radio tile checkmark icon */ export let iconDescription = "Tile checkmark"; diff --git a/src/Tile/SelectableTile.svelte b/src/Tile/SelectableTile.svelte index a613a919..cb82c132 100644 --- a/src/Tile/SelectableTile.svelte +++ b/src/Tile/SelectableTile.svelte @@ -15,7 +15,7 @@ export let value = "value"; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0; /** Specify the ARIA label for the selectable tile checkmark icon */ export let iconDescription = "Tile checkmark"; diff --git a/src/Tooltip/Tooltip.svelte b/src/Tooltip/Tooltip.svelte index a520cd59..2ea1c3bb 100644 --- a/src/Tooltip/Tooltip.svelte +++ b/src/Tooltip/Tooltip.svelte @@ -42,7 +42,7 @@ export let iconName = ""; /** Set the button tabindex */ - export let tabindex = "0"; + export let tabindex = 0; /** * Set an id for the tooltip diff --git a/src/UIShell/SkipToContent.svelte b/src/UIShell/SkipToContent.svelte index cbba79ce..1efc423d 100644 --- a/src/UIShell/SkipToContent.svelte +++ b/src/UIShell/SkipToContent.svelte @@ -3,7 +3,7 @@ export let href = "#main-content"; /** Specify the tabindex */ - export let tabindex = "0"; + export let tabindex = 0;