Skip to content

Commit 184c3d9

Browse files
committed
Some fixes
1 parent fe5c571 commit 184c3d9

File tree

13 files changed

+95
-32710
lines changed

13 files changed

+95
-32710
lines changed

COMPONENT_INDEX.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2697,8 +2697,8 @@ None.
26972697
| Prop name | Kind | Reactive | Type | Default value | Description |
26982698
| :-------------- | :--------------- | :------- | :---------------------------------------- | ------------------------------------------------ | -------------------------------------------------------- |
26992699
| ref | <code>let</code> | Yes | <code>null &#124; HTMLInputElement</code> | <code>null</code> | Obtain a reference to the input HTML element |
2700-
| light | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
27012700
| checked | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to check the tile |
2701+
| light | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
27022702
| value | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the value of the radio input |
27032703
| title | <code>let</code> | No | <code>string</code> | <code>"title"</code> | Specify the title of the selectable tile |
27042704
| tabindex | <code>let</code> | No | <code>string</code> | <code>"0"</code> | Specify the tabindex |
@@ -2727,12 +2727,11 @@ None.
27272727

27282728
### Props
27292729

2730-
| Prop name | Kind | Reactive | Type | Default value | Description |
2731-
| :------------ | :--------------- | :------- | :------------------- | ------------------ | ----------------------------------------- |
2732-
| selectedValue | <code>let</code> | Yes | <code>string</code> | -- | Specify the selected tile value |
2733-
| disabled | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile group |
2734-
| light | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
2735-
| legend | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text |
2730+
| Prop name | Kind | Reactive | Type | Default value | Description |
2731+
| :------------ | :--------------- | :------- | :------------------- | ------------------ | --------------------------------------- |
2732+
| selectedValue | <code>let</code> | Yes | <code>string</code> | -- | Specify the selected tile value |
2733+
| disabled | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile group |
2734+
| legend | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text |
27362735

27372736
### Slots
27382737

@@ -2931,8 +2930,8 @@ None.
29312930
| Prop name | Kind | Reactive | Type | Default value | Description |
29322931
| :-------------- | :--------------- | :------- | :---------------------------------------- | ------------------------------------------------ | ------------------------------------------------------------- |
29332932
| ref | <code>let</code> | Yes | <code>null &#124; HTMLInputElement</code> | <code>null</code> | Obtain a reference to the input HTML element |
2934-
| light | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
29352933
| selected | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to select the tile |
2934+
| light | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
29362935
| title | <code>let</code> | No | <code>string</code> | <code>"title"</code> | Specify the title of the selectable tile |
29372936
| value | <code>let</code> | No | <code>string</code> | <code>"value"</code> | Specify the value of the selectable tile |
29382937
| tabindex | <code>let</code> | No | <code>string</code> | <code>"0"</code> | Specify the tabindex |

docs/src/COMPONENT_API.json

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3356,7 +3356,7 @@
33563356
{ "type": "forwarded", "name": "mouseleave", "element": "table" }
33573357
],
33583358
"typedefs": [],
3359-
"rest_props": { "type": "Element", "name": "div" },
3359+
"rest_props": { "type": "Element", "name": "table" },
33603360
"extends": {
33613361
"interface": "DataTableHeader",
33623362
"import": "\"../DataTable/DataTable\""
@@ -8534,7 +8534,7 @@
85348534
"value": "false",
85358535
"isFunction": false,
85368536
"constant": false,
8537-
"reactive": true
8537+
"reactive": false
85388538
},
85398539
{
85408540
"name": "title",
@@ -8640,7 +8640,7 @@
86408640
"value": "false",
86418641
"isFunction": false,
86428642
"constant": false,
8643-
"reactive": true
8643+
"reactive": false
86448644
},
86458645
{
86468646
"name": "value",
@@ -8787,16 +8787,6 @@
87878787
"constant": false,
87888788
"reactive": false
87898789
},
8790-
{
8791-
"name": "light",
8792-
"kind": "let",
8793-
"description": "Set to `true` to enable the light variant",
8794-
"type": "boolean",
8795-
"value": "false",
8796-
"isFunction": false,
8797-
"constant": false,
8798-
"reactive": false
8799-
},
88008790
{
88018791
"name": "legend",
88028792
"kind": "let",

docs/src/pages/components/RadioTile.svx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ components: ["RadioTileGroup", "RadioTile"]
2929

3030
### Light variant
3131

32-
<RadioTileGroup light legend="Service pricing tiers">
33-
<RadioTile value="0" checked>
32+
<RadioTileGroup legend="Service pricing tiers">
33+
<RadioTile light value="0" checked>
3434
Lite plan
3535
</RadioTile>
36-
<RadioTile value="1">
36+
<RadioTile light value="1">
3737
Standard plan
3838
</RadioTile>
39-
<RadioTile value="2">
39+
<RadioTile light value="2">
4040
Plus plan
4141
</RadioTile>
4242
</TileGroup>

docs/src/pages/components/SelectableTile.svx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,34 @@ components: ["SelectableTile", "SelectableTileGroup"]
99

1010
### Multi-selectable tiles
1111

12-
<SelectableTileGroup legend="Select the options you require" light>
12+
<SelectableTileGroup legend="Select the options you require">
1313
<SelectableTile title="Option 1" selected>
1414
Option 1
1515
</SelectableTile>
1616
<SelectableTile title="Option 2" selected>
1717
Option 2
1818
</SelectableTile>
19-
<SelectableTile title="Option 3£>
19+
<SelectableTile title="Option 3">
2020
Option 3
2121
</SelectableTile>
22-
<SelectableTile light title="Option 4£>
22+
<SelectableTile light title="Option 4">
2323
Option 4 (light variant)
2424
</SelectableTile>
2525
</div>
2626

2727
### Multi-selectable tiles with light variant
2828

29-
<SelectableTileGroup light legend="Select the options you require" light>
30-
<SelectableTile title="Option 1" selected>
29+
<SelectableTileGroup legend="Select the options you require" light>
30+
<SelectableTile light title="Option 1" selected>
3131
Option 1
3232
</SelectableTile>
33-
<SelectableTile title="Option 2" selected>
33+
<SelectableTile light title="Option 2" selected>
3434
Option 2
3535
</SelectableTile>
36-
<SelectableTile title="Option 3£>
36+
<SelectableTile light title="Option 3">
3737
Option 3
3838
</SelectableTile>
39-
<SelectableTile title="Option 4£>
39+
<SelectableTile light title="Option 4">
4040
Option 4
4141
</SelectableTile>
4242
</div>

0 commit comments

Comments
 (0)