{"id":22096516,"url":"https://github.com/pksilen/semantic-ui-react-slider","last_synced_at":"2025-07-27T19:06:57.815Z","repository":{"id":43879557,"uuid":"231601342","full_name":"pksilen/semantic-ui-react-slider","owner":"pksilen","description":"Slider control for Semantic UI React","archived":false,"fork":false,"pushed_at":"2023-08-11T07:19:13.000Z","size":2906,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-18T02:15:58.301Z","etag":null,"topics":["control","javascript","library","react","semantic-ui","slider","ui"],"latest_commit_sha":null,"homepage":"https://pksilen.github.io/semantic-ui-react-slider/","language":"JavaScript","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/pksilen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"custom":["paypal.me/pksilen"]}},"created_at":"2020-01-03T14:09:30.000Z","updated_at":"2022-03-23T19:54:01.000Z","dependencies_parsed_at":"2025-07-18T01:56:42.959Z","dependency_job_id":"5c8250d8-8f84-432e-abc0-ad9b6169c6e4","html_url":"https://github.com/pksilen/semantic-ui-react-slider","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pksilen/semantic-ui-react-slider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pksilen%2Fsemantic-ui-react-slider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pksilen%2Fsemantic-ui-react-slider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pksilen%2Fsemantic-ui-react-slider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pksilen%2Fsemantic-ui-react-slider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pksilen","download_url":"https://codeload.github.com/pksilen/semantic-ui-react-slider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pksilen%2Fsemantic-ui-react-slider/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267408686,"owners_count":24082519,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"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":["control","javascript","library","react","semantic-ui","slider","ui"],"created_at":"2024-12-01T04:11:23.947Z","updated_at":"2025-07-27T19:06:57.770Z","avatar_url":"https://github.com/pksilen.png","language":"JavaScript","funding_links":["paypal.me/pksilen"],"categories":[],"sub_categories":[],"readme":"# semantic-ui-react-slider\nSlider control for [Semantic UI React]\n\nBased on [React Compound Slider]\n\n[![version][version-badge]][package]\n[![build][build]][circleci]\n[![Downloads][downloads]][package]\n[![MIT License][license-badge]][license]\n\n## Prerequisites\n    \"react\": \"^16.8.0\",\n    \"react-dom\": \"^16.8.0\",\n    \"semantic-ui-react\": \"^0.87.0\"\n\n## Installation\n    npm install --save semantic-ui-react-slider\n    \n## Demo\n   SliderView [demo] \n    \n## Example usage\n```jsx\nimport React, { useCallback, useState } from 'react';\nimport SliderView from 'semantic-ui-react-slider';\n\nconst SliderExample = () =\u003e {\n    const [minSelectedValue, setMinSelectedValue] = useState(0);\n    const [maxSelectedValue, setMaxSelectedValue] = useState(100);\n\n    const onSliderValuesChange = useCallback((minValue: number, maxValue: number) =\u003e {\n        setMinSelectedValue(minValue);\n        setMaxSelectedValue(maxValue);\n      }, []);\n\n    return (\u003cSliderView onSliderValuesChange={onSliderValuesChange} sliderMinValue={0} sliderMaxValue={100} /\u003e);\n}\n```\n\n## Mandatory properties      \n    sliderMinValue: number\n    onSliderValuesChange: (minValue: number, maxValue: number) =\u003e void,\n         \n## Optional properties\n\n    | property             | type     | description                              |\n    | ---------------------|-----------------------------------------------------|\n    | className            | string   | className for root div                   |    \n    | selectedMinValue     | number   | Selected minimum value                   |\n    | selectedMaxValue     | number   | Selected max value                       |\n    | sliderStyle          | Object   | Style for slider                         |\n    | sliderRailStyle      | Object   | Style for slider rail                    |\n    | sliderTrackStyle     | Object   | Style for slider track                   |\n    | sliderHandleStyle    | Object   | Style for slider handle                  |\n\n    \n## License\nMIT License\n\n[license-badge]: https://img.shields.io/badge/license-MIT-green\n[license]: https://github.com/pksilen/semantic-ui-react-slider/blob/master/LICENSE\n[version-badge]: https://img.shields.io/npm/v/semantic-ui-react-slider.svg?style=flat-square\n[package]: https://www.npmjs.com/package/semantic-ui-react-slider\n[downloads]: https://img.shields.io/npm/dm/semantic-ui-react-slider\n[build]: https://img.shields.io/circleci/project/github/pksilen/semantic-ui-react-slider/master.svg?style=flat-square\n[circleci]: https://circleci.com/gh/pksilen/semantic-ui-react-slider/tree/master\n[demo]: https://pksilen.github.io/semantic-ui-react-slider/\n[Semantic UI React]: https://react.semantic-ui.com/\n[React Compound Slider]: https://github.com/sghall/react-compound-slider\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpksilen%2Fsemantic-ui-react-slider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpksilen%2Fsemantic-ui-react-slider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpksilen%2Fsemantic-ui-react-slider/lists"}