Prepare for pull request

This commit is contained in:
Richard O'flynn 2020-12-01 01:01:47 +00:00
commit 80f49f6a8f
5 changed files with 0 additions and 22 deletions

View file

@ -2699,7 +2699,6 @@ None.
| checked | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to check the tile | | checked | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to check the tile |
| light | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant | | light | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
| value | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the value of the radio input | | value | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the value of the radio input |
| title | <code>let</code> | No | <code>string</code> | <code>"title"</code> | Specify the title of the selectable tile |
| tabindex | <code>let</code> | No | <code>string</code> | <code>"0"</code> | Specify the tabindex | | tabindex | <code>let</code> | No | <code>string</code> | <code>"0"</code> | Specify the tabindex |
| iconDescription | <code>let</code> | No | <code>string</code> | <code>"Tile checkmark"</code> | Specify the ARIA label for the radio tile checkmark icon | | iconDescription | <code>let</code> | No | <code>string</code> | <code>"Tile checkmark"</code> | Specify the ARIA label for the radio tile checkmark icon |
| id | <code>let</code> | No | <code>string</code> | <code>"ccs-" + Math.random().toString(36)</code> | Set an id for the input element | | id | <code>let</code> | No | <code>string</code> | <code>"ccs-" + Math.random().toString(36)</code> | Set an id for the input element |

View file

@ -8652,16 +8652,6 @@
"constant": false, "constant": false,
"reactive": false "reactive": false
}, },
{
"name": "title",
"kind": "let",
"description": "Specify the title of the selectable tile",
"type": "string",
"value": "\"title\"",
"isFunction": false,
"constant": false,
"reactive": false
},
{ {
"name": "tabindex", "name": "tabindex",
"kind": "let", "kind": "let",

View file

@ -60,7 +60,6 @@
</section> </section>
{/if} {/if}
<table <table
{...$$restProps}
class:bx--skeleton="{true}" class:bx--skeleton="{true}"
class:bx--data-table="{true}" class:bx--data-table="{true}"
class:bx--data-table--compact="{size === 'compact'}" class:bx--data-table--compact="{size === 'compact'}"

View file

@ -8,9 +8,6 @@
/** Specify the value of the radio input */ /** Specify the value of the radio input */
export let value = ""; export let value = "";
/** Specify the title of the selectable tile */
export let title = "title";
/** Specify the tabindex */ /** Specify the tabindex */
export let tabindex = "0"; export let tabindex = "0";
@ -45,7 +42,6 @@
checked="{checked}" checked="{checked}"
tabindex="-1" tabindex="-1"
class:bx--tile-input="{true}" class:bx--tile-input="{true}"
title="{title}"
on:change on:change
on:change="{() => { on:change="{() => {
update(value); update(value);

View file

@ -19,12 +19,6 @@ export interface RadioTileProps extends svelte.JSX.HTMLAttributes<HTMLElementTag
*/ */
value?: string; value?: string;
/**
* Specify the title of the selectable tile
* @default "title"
*/
title?: string;
/** /**
* Specify the tabindex * Specify the tabindex
* @default "0" * @default "0"