Skip to content

Commit

Permalink
docs(readme): changed docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
Asif Ahmed committed May 8, 2020
1 parent d269103 commit 6dd1010
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions src/components.d.ts
Expand Up @@ -70,7 +70,7 @@ export namespace Components {
*/
"clearInput": boolean;
/**
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to true.
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to false.
*/
"disabled": boolean;
/**
Expand Down Expand Up @@ -142,11 +142,11 @@ export namespace Components {
}
interface FwRadio {
/**
* Sets the state to selected. If the attribute’s value is undefined, the value is set to true.
* Sets the state to selected. If the attribute’s value is undefined, the value is set to false.
*/
"checked": boolean;
/**
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to true.
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to false.
*/
"disabled": boolean;
/**
Expand Down Expand Up @@ -597,7 +597,7 @@ declare namespace LocalJSX {
*/
"clearInput"?: boolean;
/**
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to true.
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to false.
*/
"disabled"?: boolean;
/**
Expand Down Expand Up @@ -681,11 +681,11 @@ declare namespace LocalJSX {
}
interface FwRadio {
/**
* Sets the state to selected. If the attribute’s value is undefined, the value is set to true.
* Sets the state to selected. If the attribute’s value is undefined, the value is set to false.
*/
"checked"?: boolean;
/**
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to true.
* Disables the component on the interface. If the attribute’s value is undefined, the value is set to false.
*/
"disabled"?: boolean;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/components/input/readme.md
Expand Up @@ -52,7 +52,7 @@ placeholder="Enter the verification code sent to the registered email address"
| -------------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ----------- |
| `autocomplete` | `autocomplete` | Specifies whether the browser can display suggestions to autocomplete the text value. | `"off" or "on"` | `'off'` |
| `clearInput` | `clear-input` | Displays a right-justified clear icon in the text box. Clicking the icon clears the input text. If the attribute’s value is undefined, the value is set to false. For a read-only input box, the clear icon is not displayed unless a default value is specified for the input box. | `boolean` | `false` |
| `disabled` | `disabled` | Disables the component on the interface. If the attribute’s value is undefined, the value is set to true. | `boolean` | `false` |
| `disabled` | `disabled` | Disables the component on the interface. If the attribute’s value is undefined, the value is set to false. | `boolean` | `false` |
| `iconLeft` | `icon-left` | Identifier of the icon that is displayed in the left side of the text box. The attribute’s value must be a valid svg file in the repo of icons (assets/icons). | `string` | `undefined` |
| `iconRight` | `icon-right` | Identifier of the icon that is displayed in the right side of the text box. The attribute’s value must be a valid svg file in the repo of icons (assets/icons). | `string` | `undefined` |
| `label` | `label` | Label displayed on the interface, for the component. | `string` | `''` |
Expand Down
14 changes: 7 additions & 7 deletions src/components/radio/readme.md
Expand Up @@ -14,13 +14,13 @@ fw-radio displays a radio button on the user interface and enables assigning a s

## Properties

| Property | Attribute | Description | Type | Default |
| ---------- | ---------- | --------------------------------------------------------------------------------------------------------- | --------- | ------- |
| `checked` | `checked` | Sets the state to selected. If the attribute’s value is undefined, the value is set to true. | `boolean` | `false` |
| `disabled` | `disabled` | Disables the component on the interface. If the attribute’s value is undefined, the value is set to true. | `boolean` | `false` |
| `label` | `label` | Label displayed on the interface, for the component. | `string` | `''` |
| `name` | `name` | Name of the component, saved as part of form data. | `string` | `''` |
| `value` | `value` | Identifier corresponding to the component, that is saved when the form data is saved. | `string` | `''` |
| Property | Attribute | Description | Type | Default |
| ---------- | ---------- | ---------------------------------------------------------------------------------------------------------- | --------- | ------- |
| `checked` | `checked` | Sets the state to selected. If the attribute’s value is undefined, the value is set to false. | `boolean` | `false` |
| `disabled` | `disabled` | Disables the component on the interface. If the attribute’s value is undefined, the value is set to false. | `boolean` | `false` |
| `label` | `label` | Label displayed on the interface, for the component. | `string` | `''` |
| `name` | `name` | Name of the component, saved as part of form data. | `string` | `''` |
| `value` | `value` | Identifier corresponding to the component, that is saved when the form data is saved. | `string` | `''` |


## Events
Expand Down

0 comments on commit 6dd1010

Please sign in to comment.