Remove light prop from SelectableTileGroup

This commit is contained in:
Richard O'flynn 2020-11-30 23:19:17 +00:00
commit 5ef181d693
4 changed files with 5 additions and 25 deletions

View file

@ -2959,12 +2959,11 @@ None.
### Props ### Props
| Prop name | Kind | Reactive | Type | Default value | Description | | Prop name | Kind | Reactive | Type | Default value | Description |
| :------------- | :--------------- | :------- | :------------------- | ------------------ | ----------------------------------------- | | :------------- | :--------------- | :------- | :------------------- | ------------------ | --------------------------------------- |
| selectedValues | <code>let</code> | Yes | <code>any[]</code> | <code>[]</code> | Specify the selected tile's | | selectedValues | <code>let</code> | Yes | <code>any[]</code> | <code>[]</code> | Specify the selected tile's |
| disabled | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile group | | disabled | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile group |
| light | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant | | legend | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text |
| legend | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text |
### Slots ### Slots

View file

@ -8827,16 +8827,6 @@
"constant": false, "constant": false,
"reactive": false "reactive": false
}, },
{
"name": "light",
"kind": "let",
"description": "Set to `true` to enable the light variant",
"type": "boolean",
"value": "false",
"isFunction": false,
"constant": false,
"reactive": false
},
{ {
"name": "legend", "name": "legend",
"kind": "let", "kind": "let",

View file

@ -8,9 +8,6 @@
/** Set to `true` to disable the tile group */ /** Set to `true` to disable the tile group */
export let disabled = false; export let disabled = false;
/** Set to `true` to enable the light variant */
export let light = false;
/** Specify the legend text */ /** Specify the legend text */
export let legend = ""; export let legend = "";

View file

@ -13,12 +13,6 @@ export interface SelectableTileGroupProps extends svelte.JSX.HTMLAttributes<HTML
*/ */
disabled?: boolean; disabled?: boolean;
/**
* Set to `true` to enable the light variant
* @default false
*/
light?: boolean;
/** /**
* Specify the legend text * Specify the legend text
* @default "" * @default ""