Skip to content

Commit c1e28da

Browse files
committed
docs: helper and error text description
1 parent f02b591 commit c1e28da

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

core/src/components.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2268,11 +2268,11 @@ export namespace Components {
22682268
*/
22692269
"disabled": boolean;
22702270
/**
2271-
* Text that is placed under the radio and displayed when an error is detected.
2271+
* Text that is placed under the radio label and displayed when an error is detected.
22722272
*/
22732273
"errorText"?: string;
22742274
/**
2275-
* Text that is placed under the radio and displayed when no error is detected.
2275+
* Text that is placed under the radio label and displayed when no error is detected.
22762276
*/
22772277
"helperText"?: string;
22782278
/**
@@ -7026,11 +7026,11 @@ declare namespace LocalJSX {
70267026
*/
70277027
"disabled"?: boolean;
70287028
/**
7029-
* Text that is placed under the radio and displayed when an error is detected.
7029+
* Text that is placed under the radio label and displayed when an error is detected.
70307030
*/
70317031
"errorText"?: string;
70327032
/**
7033-
* Text that is placed under the radio and displayed when no error is detected.
7033+
* Text that is placed under the radio label and displayed when no error is detected.
70347034
*/
70357035
"helperText"?: string;
70367036
/**

core/src/components/radio/radio.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ export class Radio implements ComponentInterface {
6464
@Prop() disabled = false;
6565

6666
/**
67-
* Text that is placed under the radio and displayed when an error is detected.
67+
* Text that is placed under the radio label and displayed when an error is detected.
6868
*/
6969
@Prop() errorText?: string;
7070

7171
/**
72-
* Text that is placed under the radio and displayed when no error is detected.
72+
* Text that is placed under the radio label and displayed when no error is detected.
7373
*/
7474
@Prop() helperText?: string;
7575

0 commit comments

Comments
 (0)