diff --git a/packages/controlled-vocabulary/package.json b/packages/controlled-vocabulary/package.json index dfbe4d2c..d6bb858e 100644 --- a/packages/controlled-vocabulary/package.json +++ b/packages/controlled-vocabulary/package.json @@ -1,6 +1,6 @@ { "name": "@performant-software/controlled-vocabulary", - "version": "2.2.16", + "version": "2.2.17", "description": "A package of components to allow user to configure dropdown elements. Use with the \"controlled_vocabulary\" gem.", "license": "MIT", "main": "./dist/index.cjs.js", @@ -23,8 +23,8 @@ "underscore": "^1.13.2" }, "peerDependencies": { - "@performant-software/semantic-components": "^2.2.16", - "@performant-software/shared-components": "^2.2.16", + "@performant-software/semantic-components": "^2.2.17", + "@performant-software/shared-components": "^2.2.17", "react": ">= 16.13.1 < 19.0.0", "react-dom": ">= 16.13.1 < 19.0.0" }, diff --git a/packages/core-data/package.json b/packages/core-data/package.json index 7dc40827..ca39604d 100644 --- a/packages/core-data/package.json +++ b/packages/core-data/package.json @@ -1,6 +1,6 @@ { "name": "@performant-software/core-data", - "version": "2.2.16", + "version": "2.2.17", "description": "A package of components used with the Core Data platform.", "license": "MIT", "main": "./dist/index.cjs.js", @@ -40,8 +40,8 @@ "underscore": "^1.13.2" }, "peerDependencies": { - "@performant-software/geospatial": "^2.2.16", - "@performant-software/shared-components": "^2.2.16", + "@performant-software/geospatial": "^2.2.17", + "@performant-software/shared-components": "^2.2.17", "@peripleo/maplibre": "^0.5.2", "@peripleo/peripleo": "^0.5.2", "react": ">= 16.13.1 < 19.0.0", diff --git a/packages/geospatial/package.json b/packages/geospatial/package.json index 38ebd6bb..987236b2 100644 --- a/packages/geospatial/package.json +++ b/packages/geospatial/package.json @@ -1,6 +1,6 @@ { "name": "@performant-software/geospatial", - "version": "2.2.16", + "version": "2.2.17", "description": "A package of components for all things map-related.", "license": "MIT", "main": "./dist/index.cjs.js", diff --git a/packages/semantic-ui/package.json b/packages/semantic-ui/package.json index d31ab007..01ce6129 100644 --- a/packages/semantic-ui/package.json +++ b/packages/semantic-ui/package.json @@ -1,6 +1,6 @@ { "name": "@performant-software/semantic-components", - "version": "2.2.16", + "version": "2.2.17", "description": "A package of shared components based on the Semantic UI Framework.", "license": "MIT", "main": "./dist/index.cjs.js", @@ -35,7 +35,7 @@ "zotero-translation-client": "^5.0.1" }, "peerDependencies": { - "@performant-software/shared-components": "^2.2.16", + "@performant-software/shared-components": "^2.2.17", "@samvera/clover-iiif": "^2.3.2", "react": ">= 16.13.1 < 19.0.0", "react-dnd": "^11.1.3", diff --git a/packages/semantic-ui/src/components/FacetSlider.js b/packages/semantic-ui/src/components/FacetSlider.js index 57fac68e..7064b857 100644 --- a/packages/semantic-ui/src/components/FacetSlider.js +++ b/packages/semantic-ui/src/components/FacetSlider.js @@ -4,7 +4,6 @@ import Slider from 'rc-slider'; import React, { forwardRef, useEffect, - useMemo, useState } from 'react'; import { Grid } from 'semantic-ui-react'; @@ -22,26 +21,20 @@ const FacetSlider = forwardRef(({ useRangeSlider, ...props }: Props, ref: HTMLEl const { start, range, - refine, + canRefine = true, + refine } = useRangeSlider(props); - const [valueView, setValueView] = useState < Array < number >> ([range.min, range.max]); + const { min, max } = range; - /** - * Sets the visibility variable based on the range min and max. - * - * @type {unknown} - */ - const visible = useMemo(() => range.min !== 0 && range.max !== 0, [range.min, range.max]); + const [value, setValue] = useState([min, max]); + + const from = Math.max(min, Number.isFinite(start[0]) ? start[0] : min); + const to = Math.min(max, Number.isFinite(start[1]) ? start[1] : max); - /** - * Resets the value and valueView when the current refinement is cleared. - */ useEffect(() => { - if (start[0] <= range.min && start[1] >= range.max) { - setValueView([range.min, range.max]); - } - }, [range, start]); + setValue([from, to]); + }, [from, to]); return (
refine(v)} - onChange={(v) => setValueView(v)} + onChangeComplete={(v) => refine(v)} + onChange={(v) => setValue(v)} range - value={valueView} + value={value} />
- {valueView[0]} + { value[0] } - {valueView[1]} + { value[1] } diff --git a/packages/shared/package.json b/packages/shared/package.json index e44e7f62..2646dfc7 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@performant-software/shared-components", - "version": "2.2.16", + "version": "2.2.17", "description": "A package of shared, framework agnostic, components.", "license": "MIT", "main": "./dist/index.cjs.js", diff --git a/packages/user-defined-fields/package.json b/packages/user-defined-fields/package.json index 70ad9c53..af305de4 100644 --- a/packages/user-defined-fields/package.json +++ b/packages/user-defined-fields/package.json @@ -1,6 +1,6 @@ { "name": "@performant-software/user-defined-fields", - "version": "2.2.16", + "version": "2.2.17", "description": "A package of components used for allowing end users to define fields on models. Use with the \"user_defined_fields\" gem.", "license": "MIT", "main": "./dist/index.cjs.js", @@ -23,8 +23,8 @@ "underscore": "^1.13.2" }, "peerDependencies": { - "@performant-software/semantic-components": "^2.2.16", - "@performant-software/shared-components": "^2.2.16", + "@performant-software/semantic-components": "^2.2.17", + "@performant-software/shared-components": "^2.2.17", "react": ">= 16.13.1 < 19.0.0", "react-dom": ">= 16.13.1 < 19.0.0" }, diff --git a/packages/visualize/package.json b/packages/visualize/package.json index ab1e7e12..d3183f4d 100644 --- a/packages/visualize/package.json +++ b/packages/visualize/package.json @@ -1,6 +1,6 @@ { "name": "@performant-software/visualize", - "version": "2.2.16", + "version": "2.2.17", "description": "A package of components used for data visualization", "license": "MIT", "main": "./dist/index.cjs.js", diff --git a/react-components.json b/react-components.json index 4c2bb7b3..31e95c88 100644 --- a/react-components.json +++ b/react-components.json @@ -8,5 +8,5 @@ "packages/user-defined-fields", "packages/visualize" ], - "version": "2.2.16" + "version": "2.2.17" }