From 6dd10100d81fdd059022cd886eaee2677857f976 Mon Sep 17 00:00:00 2001 From: Asif Ahmed Date: Fri, 8 May 2020 12:22:59 +0530 Subject: [PATCH] docs(readme): changed docs build --- src/components.d.ts | 12 ++++++------ src/components/input/readme.md | 2 +- src/components/radio/readme.md | 14 +++++++------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/components.d.ts b/src/components.d.ts index fc52b5683..a56ab39a4 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -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; /** @@ -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; /** @@ -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; /** @@ -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; /** diff --git a/src/components/input/readme.md b/src/components/input/readme.md index 64f3ab15a..8adfaa756 100644 --- a/src/components/input/readme.md +++ b/src/components/input/readme.md @@ -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` | `''` | diff --git a/src/components/radio/readme.md b/src/components/radio/readme.md index c01db64ef..f1caa7a24 100644 --- a/src/components/radio/readme.md +++ b/src/components/radio/readme.md @@ -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