@byteluck-fe/model-driven-controls 7.0.0-props.72 → 7.0.0-props.73
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.
|
@@ -139,19 +139,18 @@ var SliderProperty = /*#__PURE__*/ function(BaseControlProperty) {
|
|
|
139
139
|
function SliderProperty(props) {
|
|
140
140
|
_class_call_check(this, SliderProperty);
|
|
141
141
|
var _this;
|
|
142
|
-
var _ref, _ref1, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7
|
|
142
|
+
var _ref, _ref1, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7;
|
|
143
143
|
_this = _call_super(this, SliderProperty, [
|
|
144
144
|
props
|
|
145
|
-
]), _define_property(_this, "defaultValue", void 0), _define_property(_this, "min", void 0), _define_property(_this, "max", void 0), _define_property(_this, "step", void 0), _define_property(_this, "
|
|
145
|
+
]), _define_property(_this, "defaultValue", void 0), _define_property(_this, "min", void 0), _define_property(_this, "max", void 0), _define_property(_this, "step", void 0), _define_property(_this, "showInput", void 0), _define_property(_this, "showMarks", void 0), _define_property(_this, "marks", void 0);
|
|
146
146
|
_this.caption = (_ref = props === null || props === void 0 ? void 0 : props.caption) !== null && _ref !== void 0 ? _ref : SliderControl.controlName;
|
|
147
147
|
_this.defaultValue = (_ref1 = props === null || props === void 0 ? void 0 : props.defaultValue) !== null && _ref1 !== void 0 ? _ref1 : '';
|
|
148
148
|
_this.min = (_ref2 = props === null || props === void 0 ? void 0 : props.min) !== null && _ref2 !== void 0 ? _ref2 : 0;
|
|
149
149
|
_this.max = (_ref3 = props === null || props === void 0 ? void 0 : props.max) !== null && _ref3 !== void 0 ? _ref3 : 100;
|
|
150
150
|
_this.step = (_ref4 = props === null || props === void 0 ? void 0 : props.step) !== null && _ref4 !== void 0 ? _ref4 : 1;
|
|
151
|
-
_this.
|
|
152
|
-
_this.
|
|
153
|
-
_this.
|
|
154
|
-
_this.marks = initOptions((_ref8 = props === null || props === void 0 ? void 0 : props.marks) !== null && _ref8 !== void 0 ? _ref8 : []);
|
|
151
|
+
_this.showInput = (_ref5 = props === null || props === void 0 ? void 0 : props.showInput) !== null && _ref5 !== void 0 ? _ref5 : true;
|
|
152
|
+
_this.showMarks = (_ref6 = props === null || props === void 0 ? void 0 : props.showMarks) !== null && _ref6 !== void 0 ? _ref6 : false;
|
|
153
|
+
_this.marks = initOptions((_ref7 = props === null || props === void 0 ? void 0 : props.marks) !== null && _ref7 !== void 0 ? _ref7 : []);
|
|
155
154
|
return _this;
|
|
156
155
|
}
|
|
157
156
|
return SliderProperty;
|