mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
Prepare for pull request
This commit is contained in:
parent
ed9d109b33
commit
80f49f6a8f
5 changed files with 0 additions and 22 deletions
|
@ -2699,7 +2699,6 @@ None.
|
|||
| 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 |
|
||||
| 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 |
|
||||
| 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 |
|
||||
|
|
|
@ -8652,16 +8652,6 @@
|
|||
"constant": 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",
|
||||
"kind": "let",
|
||||
|
|
|
@ -60,7 +60,6 @@
|
|||
</section>
|
||||
{/if}
|
||||
<table
|
||||
{...$$restProps}
|
||||
class:bx--skeleton="{true}"
|
||||
class:bx--data-table="{true}"
|
||||
class:bx--data-table--compact="{size === 'compact'}"
|
||||
|
|
|
@ -8,9 +8,6 @@
|
|||
/** Specify the value of the radio input */
|
||||
export let value = "";
|
||||
|
||||
/** Specify the title of the selectable tile */
|
||||
export let title = "title";
|
||||
|
||||
/** Specify the tabindex */
|
||||
export let tabindex = "0";
|
||||
|
||||
|
@ -45,7 +42,6 @@
|
|||
checked="{checked}"
|
||||
tabindex="-1"
|
||||
class:bx--tile-input="{true}"
|
||||
title="{title}"
|
||||
on:change
|
||||
on:change="{() => {
|
||||
update(value);
|
||||
|
|
6
types/Tile/RadioTile.d.ts
vendored
6
types/Tile/RadioTile.d.ts
vendored
|
@ -19,12 +19,6 @@ export interface RadioTileProps extends svelte.JSX.HTMLAttributes<HTMLElementTag
|
|||
*/
|
||||
value?: string;
|
||||
|
||||
/**
|
||||
* Specify the title of the selectable tile
|
||||
* @default "title"
|
||||
*/
|
||||
title?: string;
|
||||
|
||||
/**
|
||||
* Specify the tabindex
|
||||
* @default "0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue