@mw-kit/mw-ui 1.7.81 → 1.7.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -16034,7 +16034,8 @@ var Range = React__default.forwardRef(function (props, ref) {
|
|
|
16034
16034
|
minLabel = props.minLabel,
|
|
16035
16035
|
maxLabel = props.maxLabel,
|
|
16036
16036
|
width = props.width,
|
|
16037
|
-
setValue = props.setValue
|
|
16037
|
+
setValue = props.setValue,
|
|
16038
|
+
hideNavbar = props.hideNavbar;
|
|
16038
16039
|
|
|
16039
16040
|
var _Form$useContext = Form.useContext(props.name),
|
|
16040
16041
|
isRequired = _Form$useContext.isRequired,
|
|
@@ -16128,7 +16129,7 @@ var Range = React__default.forwardRef(function (props, ref) {
|
|
|
16128
16129
|
decrement = _ref.decrement,
|
|
16129
16130
|
canDecrement = _ref.canDecrement;
|
|
16130
16131
|
|
|
16131
|
-
var inputProps = filterObject(props, ['label', 'minLabel', 'maxLabel', 'invalid', 'required', 'width', 'onChange', 'step', 'value'], {
|
|
16132
|
+
var inputProps = filterObject(props, ['label', 'minLabel', 'maxLabel', 'invalid', 'required', 'width', 'onChange', 'step', 'value', 'hideNavbar'], {
|
|
16132
16133
|
min: min,
|
|
16133
16134
|
max: max,
|
|
16134
16135
|
step: step,
|
|
@@ -16162,7 +16163,7 @@ var Range = React__default.forwardRef(function (props, ref) {
|
|
|
16162
16163
|
}, inputProps, {
|
|
16163
16164
|
"$activeBullet": (strict === true ? markers[value].value : value) !== 0,
|
|
16164
16165
|
"$bulletSize": bulletSize
|
|
16165
|
-
})), React__default.createElement(NavBar, {
|
|
16166
|
+
})), !hideNavbar && React__default.createElement(NavBar, {
|
|
16166
16167
|
"$position": position,
|
|
16167
16168
|
"$strict": strict
|
|
16168
16169
|
}, React__default.createElement("div", {
|