Skip to content

Commit

Permalink
chore: pass through radio-group, radio, slider and slider-label compo…
Browse files Browse the repository at this point in the history
…nent site definitions (microsoft#3251)
  • Loading branch information
marjonlynch authored Jun 9, 2020
1 parent ad07adb commit 339e09b
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const SliderLabelTemplate = html<SliderLabel>`
<div class="container">
${when(x => !x.hideMark, html` <div class="mark"></div> `)}
<div class="label">
<slot> </slot>
<slot></slot>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ export const fastRadioGroupDefinition: WebComponentDefinition = {
name: "",
description: "The default slot",
},
{
name: "label",
description: "Label slot",
},
],
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ export const fastRadioDefinition: WebComponentDefinition = {
name: "",
description: "The default slot",
},
{
name: "checked-indicator",
description: "Glyph identifying checked status slot",
},
],
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ export const fastSliderLabelDefinition: WebComponentDefinition = {
default: false,
required: false,
},
{
name: "position",
description: "The position value attribute",
type: DataType.string,
default: false,
required: false,
},
],
slots: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ export const fastSliderDefinition: WebComponentDefinition = {
name: "",
description: "The default slot",
},
{
name: "track",
description: "The horizontal or vertical track slot",
},
{
name: "thumb",
description: "The thumb slot",
},
],
},
],
Expand Down

0 comments on commit 339e09b

Please sign in to comment.