@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.modern.js
CHANGED
|
@@ -16031,7 +16031,8 @@ var Range = React__default.forwardRef(function (props, ref) {
|
|
|
16031
16031
|
minLabel = props.minLabel,
|
|
16032
16032
|
maxLabel = props.maxLabel,
|
|
16033
16033
|
width = props.width,
|
|
16034
|
-
setValue = props.setValue
|
|
16034
|
+
setValue = props.setValue,
|
|
16035
|
+
hideNavbar = props.hideNavbar;
|
|
16035
16036
|
|
|
16036
16037
|
var _Form$useContext = Form.useContext(props.name),
|
|
16037
16038
|
isRequired = _Form$useContext.isRequired,
|
|
@@ -16125,7 +16126,7 @@ var Range = React__default.forwardRef(function (props, ref) {
|
|
|
16125
16126
|
decrement = _ref.decrement,
|
|
16126
16127
|
canDecrement = _ref.canDecrement;
|
|
16127
16128
|
|
|
16128
|
-
var inputProps = filterObject(props, ['label', 'minLabel', 'maxLabel', 'invalid', 'required', 'width', 'onChange', 'step', 'value'], {
|
|
16129
|
+
var inputProps = filterObject(props, ['label', 'minLabel', 'maxLabel', 'invalid', 'required', 'width', 'onChange', 'step', 'value', 'hideNavbar'], {
|
|
16129
16130
|
min: min,
|
|
16130
16131
|
max: max,
|
|
16131
16132
|
step: step,
|
|
@@ -16159,7 +16160,7 @@ var Range = React__default.forwardRef(function (props, ref) {
|
|
|
16159
16160
|
}, inputProps, {
|
|
16160
16161
|
"$activeBullet": (strict === true ? markers[value].value : value) !== 0,
|
|
16161
16162
|
"$bulletSize": bulletSize
|
|
16162
|
-
})), React__default.createElement(NavBar, {
|
|
16163
|
+
})), !hideNavbar && React__default.createElement(NavBar, {
|
|
16163
16164
|
"$position": position,
|
|
16164
16165
|
"$strict": strict
|
|
16165
16166
|
}, React__default.createElement("div", {
|