From 7af06356c2f07eff6a7fa04bbc1d4b4d32481d22 Mon Sep 17 00:00:00 2001 From: Brian Heston <47367562+bheston@users.noreply.github.com> Date: Sun, 4 Feb 2024 20:38:48 -0800 Subject: [PATCH] Doc updates --- .../fast-foundation/src/slider-label/slider-label.ts | 6 +++--- .../fast-foundation/src/slider/README.md | 12 ++++++------ .../fast-foundation/src/slider/slider.ts | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/web-components/fast-foundation/src/slider-label/slider-label.ts b/packages/web-components/fast-foundation/src/slider-label/slider-label.ts index 448169c577e..aecdc48cb6b 100644 --- a/packages/web-components/fast-foundation/src/slider-label/slider-label.ts +++ b/packages/web-components/fast-foundation/src/slider-label/slider-label.ts @@ -21,9 +21,9 @@ const defaultConfig: SliderConfiguration = { * A label element intended to be used with the {@link @microsoft/fast-foundation#(FASTSlider:class)} component. * * @slot - The default slot for the label content - * @csspart container - The element wrapping the label mark and text - * @csspart mark - The element wrapping the mark - * @csspart content - The element wrapping the label text + * @csspart container - The element wrapping the label mark and content + * @csspart mark - The element wrapping the label mark + * @csspart content - The element wrapping the label content * * @public */ diff --git a/packages/web-components/fast-foundation/src/slider/README.md b/packages/web-components/fast-foundation/src/slider/README.md index 9aead54b424..aade9fd14b9 100644 --- a/packages/web-components/fast-foundation/src/slider/README.md +++ b/packages/web-components/fast-foundation/src/slider/README.md @@ -217,7 +217,7 @@ export const mySliderLabel = SliderLabel.compose({ | `track` | The region containing the track elements | | `track-start` | The element wrapping the track start slot | | `thumb-container` | The thumb container element which is programmatically positioned | -| `thumb` | The default thumb element | +| `thumb` | The thumb element | #### Slots @@ -266,11 +266,11 @@ export const mySliderLabel = SliderLabel.compose({ #### CSS Parts -| Name | Description | -| ----------- | -------------------------------------------- | -| `container` | The element wrapping the label mark and text | -| `mark` | The element wrapping the mark | -| `content` | The element wrapping the label text | +| Name | Description | +| ----------- | ----------------------------------------------- | +| `container` | The element wrapping the label mark and content | +| `mark` | The element wrapping the label mark | +| `content` | The element wrapping the label content | #### Slots diff --git a/packages/web-components/fast-foundation/src/slider/slider.ts b/packages/web-components/fast-foundation/src/slider/slider.ts index 67d0a16edbd..b5f7e2660ff 100644 --- a/packages/web-components/fast-foundation/src/slider/slider.ts +++ b/packages/web-components/fast-foundation/src/slider/slider.ts @@ -27,7 +27,7 @@ import { SliderConfiguration, SliderMode } from "./slider.options.js"; * @csspart track - The region containing the track elements * @csspart track-start - The element wrapping the track start slot * @csspart thumb-container - The thumb container element which is programmatically positioned - * @csspart thumb - The default thumb element + * @csspart thumb - The thumb element * @fires change - Fires a custom 'change' event when the slider value changes * * @public