Skip to content

Commit 99773a3

Browse files
authored
Merge branch 'master' into gomezivann/theming
2 parents d7bc9da + 109b314 commit 99773a3

File tree

37 files changed

+264
-20
lines changed

37 files changed

+264
-20
lines changed

apps/website/screens/components/date-input/code/DateInputCodePage.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,17 @@ const sections = [
236236
<td>Reference to the component.</td>
237237
<td>-</td>
238238
</tr>
239+
<tr>
240+
<td>ariaLabel</td>
241+
<td>
242+
<TableCode>string</TableCode>
243+
</td>
244+
<td>
245+
Specifies a string to be used as the name for the date input element when no <Code>label</Code> is
246+
provided.
247+
</td>
248+
<td>'Date input'</td>
249+
</tr>
239250
</tbody>
240251
</DxcTable>
241252
),

apps/website/screens/components/number-input/code/NumberInputCodePage.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,17 @@ const sections = [
257257
<td>Reference to the component.</td>
258258
<td>-</td>
259259
</tr>
260+
<tr>
261+
<td>ariaLabel</td>
262+
<td>
263+
<TableCode>string</TableCode>
264+
</td>
265+
<td>
266+
Specifies a string to be used as the name for the number input element when no <Code>label</Code> is
267+
provided.
268+
</td>
269+
<td>'Number input'</td>
270+
</tr>
260271
</tbody>
261272
</DxcTable>
262273
),

apps/website/screens/components/password-input/code/PasswordInputCodePage.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,17 @@ const sections = [
204204
<td>Reference to the component.</td>
205205
<td>-</td>
206206
</tr>
207+
<tr>
208+
<td>ariaLabel</td>
209+
<td>
210+
<TableCode>string</TableCode>
211+
</td>
212+
<td>
213+
Specifies a string to be used as the name for the password input element when no <Code>label</Code> is
214+
provided.
215+
</td>
216+
<td>'Password input'</td>
217+
</tr>
207218
</tbody>
208219
</DxcTable>
209220
),

apps/website/screens/components/progress-bar/code/ProgressBarCodePage.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { DxcFlex, DxcTable } from "@dxc-technology/halstack-react";
2+
import Code from "@/common/Code";
23
import QuickNavContainerLayout from "@/common/QuickNavContainerLayout";
34
import QuickNavContainer from "@/common/QuickNavContainer";
45
import DocFooter from "@/common/DocFooter";
@@ -79,6 +80,17 @@ const sections = [
7980
</td>
8081
<td>-</td>
8182
</tr>
83+
<tr>
84+
<td>ariaLabel</td>
85+
<td>
86+
<TableCode>string</TableCode>
87+
</td>
88+
<td>
89+
Specifies a string to be used as the name for the progress bar element when no <Code>label</Code> is
90+
provided.
91+
</td>
92+
<td>'Progress bar'</td>
93+
</tr>
8294
</tbody>
8395
</DxcTable>
8496
),

apps/website/screens/components/radio-group/code/RadioGroupCodePage.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,14 @@ const sections = [
206206
<td>Reference to the component.</td>
207207
<td>-</td>
208208
</tr>
209+
<tr>
210+
<td>ariaLabel</td>
211+
<td>
212+
<TableCode>string</TableCode>
213+
</td>
214+
<td>Specifies a string to be used as the name for the radio group when no `label` is provided.</td>
215+
<td>'Radio group'</td>
216+
</tr>
209217
</tbody>
210218
</DxcTable>
211219
),

apps/website/screens/components/select/code/SelectCodePage.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,16 @@ const sections = [
268268
<td>Reference to the component.</td>
269269
<td>-</td>
270270
</tr>
271+
<tr>
272+
<td>ariaLabel</td>
273+
<td>
274+
<TableCode>string</TableCode>
275+
</td>
276+
<td>
277+
Specifies a string to be used as the name for the select element when no <Code>label</Code> is provided.
278+
</td>
279+
<td>'Select'</td>
280+
</tr>
271281
</tbody>
272282
</DxcTable>
273283
),

apps/website/screens/components/slider/code/SliderCodePage.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,16 @@ const sections = [
213213
<td>Reference to the component.</td>
214214
<td>-</td>
215215
</tr>
216+
<tr>
217+
<td>ariaLabel</td>
218+
<td>
219+
<TableCode>string</TableCode>
220+
</td>
221+
<td>
222+
Specifies a string to be used as the name for the slider element when no <Code>label</Code> is provided.
223+
</td>
224+
<td>'Slider'</td>
225+
</tr>
216226
</tbody>
217227
</DxcTable>
218228
),

apps/website/screens/components/spinner/code/SpinnerCodePage.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,17 @@ const sections = [
7575
</td>
7676
<td>-</td>
7777
</tr>
78+
<tr>
79+
<td>ariaLabel</td>
80+
<td>
81+
<TableCode>string</TableCode>
82+
</td>
83+
<td>
84+
Specifies a string to be used as the name for the spinner element when no `label` is provided or the
85+
`mode` is set to small.
86+
</td>
87+
<td>'Spinner'</td>
88+
</tr>
7889
</tbody>
7990
</DxcTable>
8091
),

apps/website/screens/components/switch/code/SwitchCodePage.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,14 @@ const sections = [
152152
<td>Reference to the component.</td>
153153
<td>-</td>
154154
</tr>
155+
<tr>
156+
<td>ariaLabel</td>
157+
<td>
158+
<TableCode>{"string"}</TableCode>
159+
</td>
160+
<td>Specifies a string to be used as the name for the switch element when no `label` is provided.</td>
161+
<td>'Switch'</td>
162+
</tr>
155163
</tbody>
156164
</DxcTable>
157165
),

apps/website/screens/components/text-input/code/TextInputCodePage.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,17 @@ const sections = [
330330
<td>Reference to the component.</td>
331331
<td>-</td>
332332
</tr>
333+
<tr>
334+
<td>ariaLabel</td>
335+
<td>
336+
<TableCode>string</TableCode>
337+
</td>
338+
<td>
339+
Specifies a string to be used as the name for the textInput element when no <Code>label</Code> is
340+
provided.
341+
</td>
342+
<td>'Text input'</td>
343+
</tr>
333344
</tbody>
334345
</DxcTable>
335346
),

0 commit comments

Comments
 (0)