{"id":21396662,"url":"https://github.com/samdouble/fikasio-react-ui-components","last_synced_at":"2026-02-28T08:34:54.114Z","repository":{"id":197837603,"uuid":"699362884","full_name":"samdouble/fikasio-react-ui-components","owner":"samdouble","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-15T04:43:36.000Z","size":1309,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-15T06:08:23.183Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/samdouble.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-02T13:41:16.000Z","updated_at":"2025-11-08T02:28:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"48fdae5b-7d65-4ae1-95a6-131be424d58c","html_url":"https://github.com/samdouble/fikasio-react-ui-components","commit_stats":null,"previous_names":["samdouble/fikasio-react-ui-components"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/samdouble/fikasio-react-ui-components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdouble%2Ffikasio-react-ui-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdouble%2Ffikasio-react-ui-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdouble%2Ffikasio-react-ui-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdouble%2Ffikasio-react-ui-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samdouble","download_url":"https://codeload.github.com/samdouble/fikasio-react-ui-components/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdouble%2Ffikasio-react-ui-components/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29928857,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-22T14:28:30.744Z","updated_at":"2026-02-28T08:34:54.098Z","avatar_url":"https://github.com/samdouble.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @fikasio/react-ui-components\n\n## Installation\n\nUse **npm**:\n\n```\nnpm install --save @fikasio/react-ui-components\n```\n\nor **Yarn**:\n\n```\nyarn add @fikasio/react-ui-components\n```\n\n## Usage\n\nImport components from the package in your React application, for example:\n\n```\nimport { Footer } from '@fikasio/react-ui-components';\n```\n\n## Components\n\n### AutosaveTextarea\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the textarea      |\n| defaultValue            | string          | No              | Initial text content of the textarea            |\n| name                    | string          | No              | Name attribute for the textarea input           |\n| onSave                  | function        | No              | Handler called when content should be saved     |\n| placeholder             | string          | No              | Placeholder text when textarea is empty         |\n| style                   | CSSProperties   | No              | Additional CSS styles for the textarea          |\n| value                   | string          | No              | Controlled text content value                   |\n\n### Button\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No             | Additional CSS class name for the button         |\n| disabled                | boolean         | No             | Whether the button is disabled                   |\n| onClick                 | function        | No             | Handler called when button is clicked            |\n| style                   | CSSProperties   | No             | Additional CSS styles for the button             |\n\n### Checkbox\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No             | Additional CSS class name for the checkbox      |\n| defaultIsChecked        | boolean         | No             | Initial checked state of the checkbox           |\n| isChecked               | boolean         | No             | Controlled checked state of the checkbox        |\n| name                    | string          | No             | Name attribute for the checkbox input           |\n| onClick                 | function        | No             | Click handler function for the checkbox         |\n| style                   | CSSProperties   | No             | Additional CSS styles for the Checkbox          |\n\n### DatePicker\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the DatePicker    |\n| dateFormat              | string          | No              | Format for date value (e.g. 'yyyy-MM-dd')       |\n| defaultValue            | Date            | No              | Initial date value                              |\n| displayFormat           | string          | No              | Format for displaying the date                  |\n| displayFunction         | function        | No              | Function for displaying the date                |\n| isOpen                  | boolean         | No              | Controls whether the picker is open             |\n| name                    | string          | No              | Name attribute for the input                    |\n| onChange                | function        | No              | Handler called when date selection changes      |\n| onClose                 | function        | No              | Handler called when picker closes               |\n| onOpen                  | function        | No              | Handler called when picker opens                |\n| onRemoveValue           | function        | No              | Handler called when value is cleared            |\n| shouldCloseOnSelect     | boolean         | No              | Whether to close picker after selection         |\n| showRemoveValue         | boolean         | No              | Show option to clear the selected value         |\n| showTimeSelect          | boolean         | No              | Enable time selection                           |\n| style                   | CSSProperties   | No              | Additional CSS styles for the DatePicker        |\n| timeCaption             | string          | No              | Label shown above time selector                 |\n| timeFormat              | string          | No              | Format for time value (e.g. 'HH:mm')            |\n| timeIntervals           | number          | No              | Interval in minutes between time options        |\n| value                   | Date            | No              | Controlled date value                           |\n\n### Dot\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the Dot           |\n| color                   | string          | No              | Color of the dot (any valid CSS color)          |\n| size                    | number          | No              | Size of the dot in pixels                       |\n| style                   | CSSProperties   | No              | Additional CSS styles for the dot               |\n\n### Error\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| children                | string/ReactNode| Yes             | Content to display in the error message         |\n| className               | string          | No              | Additional CSS class name for the Error         |\n| style                   | CSSProperties   | No              | Additional CSS styles for the Error             |\n\n### Footer\n\nThe Footer component provides a flexible layout with multiple sections for content placement. It can contain children elements in the center, left, right, and top positions.\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| childrenCenter          | ReactNode       | No              | Content to be displayed in the center section   |\n| childrenLeft            | ReactNode       | No              | Content to be displayed in the left section     |\n| childrenRight           | ReactNode       | No              | Content to be displayed in the right section    |\n| childrenTop             | ReactNode       | No              | Content to be displayed in the top section      |\n| className               | string          | No              | Additional CSS class name for the Footer        |\n| style                   | CSSProperties   | No              | Additional CSS styles for the Footer            |\n\n### Input\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the Input         |\n| defaultValue            | string          | No              | Initial value for uncontrolled input            |\n| disabled                | boolean         | No              | Whether the input is disabled                   |\n| name                    | string          | No              | Name attribute for the input                    |\n| onChange                | function        | No              | Handler called when input value changes         |\n| placeholder             | string          | No              | Placeholder text shown when input is empty      |\n| style                   | CSSProperties   | No              | Additional CSS styles for the Input             |\n| value                   | string          | No              | Controlled input value                          |\n\n### SearchBar\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the SearchBar     |\n| defaultValue            | string          | No              | Initial value for uncontrolled input            |\n| onChange                | function        | No              | Handler called when input value changes         |\n| onSelect                | function        | No              | Handler called when an option is selected from the menu |\n| onSubmit                | function        | No              | Handler called when the Enter key is pressed    |\n| options                 | array           | No              | Suggestion options that will appear below       |\n| placeholder             | string          | No              | Placeholder text when textarea is empty         |\n| style                   | CSSProperties   | No              | Additional CSS styles for the SearchBar         |\n| value                   | string          | No              | Controlled input value                          |\n\n### Select\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the Select        |\n| defaultValue            | string          | No              | Initial value for uncontrolled select           |\n| disabled                | boolean         | No              | Whether the select is disabled                  |\n| name                    | string          | No              | Name attribute for the select                   |\n| onChange                | function        | No              | Handler called when select value changes        |\n| options                 | array           | Yes             | Array of options to display in the select       |\n| style                   | CSSProperties   | No              | Additional CSS styles for the Select            |\n| value                   | string          | No              | Controlled select value                         |\n\n### Selector\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the Selector      |\n| defaultValue            | string          | No              | Initial value for uncontrolled select           |\n| name                    | string          | No              | Name attribute for the select                   |\n| onChange                | function        | No              | Handler called when select value changes        |\n| options                 | array           | No              | Array of options to display in the select       |\n| render                  | function        | No              | Describes how to render the main button         |\n| style                   | CSSProperties   | No              | Additional CSS styles for the Selector          |\n| value                   | string          | No              | Controlled select value                         |\n\n### Success\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the Success       |\n| style                   | CSSProperties   | No              | Additional CSS styles for the Success           |\n\n### Warning\n\n#### Props\n\n| Name                    | Type            | Required        | Description                                     |\n|-------------------------|:----------------|:----------------|:------------------------------------------------|\n| className               | string          | No              | Additional CSS class name for the Warning       |\n| style                   | CSSProperties   | No              | Additional CSS styles for the Warning           |\n\n## Hooks\n\n### useTheme\n\nTODO\n\n## Development\n\nSee DEVELOPMENT.md.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamdouble%2Ffikasio-react-ui-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamdouble%2Ffikasio-react-ui-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamdouble%2Ffikasio-react-ui-components/lists"}