Skip to content

Commit bb4129c

Browse files
committed
Updates based on feedback
1 parent 7da04d0 commit bb4129c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

apps/website/pages/components/slider/code.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import SliderCodePage from "screens/components/slider/code/SliderCodePage";
66
const Code = () => (
77
<>
88
<Head>
9-
<title>Slider — Halstack Design System</title>
9+
<title>Slider code — Halstack Design System</title>
1010
</Head>
1111
<SliderCodePage />
1212
</>

apps/website/screens/components/slider/overview/SliderOverviewPage.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ const sections = [
158158
Lets users <strong>select any value</strong> within the range, without fixed steps.
159159
</DxcParagraph>
160160
<DxcBulletedList>
161-
<DxcBulletedList.Item>Each step is marked, and the thumb "snaps" to these values.</DxcBulletedList.Item>
161+
<DxcBulletedList.Item>Offers smooth, fine-grained control over the selection.</DxcBulletedList.Item>
162162
<DxcBulletedList.Item>
163-
Best for <strong>limited, meaningful choices</strong> where precision matters.
163+
Best for <strong>gradual adjustments</strong> where any value is valid.
164164
</DxcBulletedList.Item>
165165
</DxcBulletedList>
166166
<Example example={continuous} />
@@ -177,8 +177,8 @@ const sections = [
177177
content: (
178178
<DxcBulletedList>
179179
<DxcBulletedList.Item>
180-
Use a <strong>descriptive label</strong> that explains what the slider controls (i.d., instead of "Adjust
181-
value," use "Select your coverage amount.").
180+
Use a <strong>descriptive label</strong> that explains what the slider controls (i.e., instead of "Adjust
181+
value", use "Select your coverage amount.").
182182
</DxcBulletedList.Item>
183183
<DxcBulletedList.Item>
184184
Add <strong>helper text</strong> if additional guidance is needed.

apps/website/screens/components/slider/overview/examples/discrete.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const code = `() => {
1919
step={10}
2020
value={value}
2121
/>
22+
<span>Current value: {value}</span>
2223
</DxcInset>
2324
);
2425
}`;

0 commit comments

Comments
 (0)