![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/libs/absol-full/dist/js/ |
Upload File : |
/*** module: node_modules/absol-form/js/components/TrackBarInput.js ***/ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _FCore = require("../core/FCore"); var _ScalableComponent = _interopRequireDefault(require("../core/ScalableComponent")); var _inheritComponentClass = _interopRequireDefault(require("../core/inheritComponentClass")); var _InputAttributeHandlers = _interopRequireWildcard(require("./handlers/InputAttributeHandlers")); var _Assembler = require("../core/Assembler"); var _TrackBar = _interopRequireDefault(require("./TrackBar")); var _InputStyleHandlers = _interopRequireDefault(require("./handlers/InputStyleHandlers")); function TrackBarInput() { _ScalableComponent.default.call(this); } (0, _inheritComponentClass.default)(TrackBarInput, _ScalableComponent.default); TrackBarInput.prototype.tag = 'TrackBarInput'; TrackBarInput.prototype.menuIcon = 'span.mdi.mdi-source-commit.mdi-rotate-90'; TrackBarInput.prototype.render = function () { return (0, _FCore._)('trackbarinput'); }; Object.assign(TrackBarInput.prototype.attributeHandlers, _InputAttributeHandlers.default); Object.assign(TrackBarInput.prototype.styleHandlers, _InputStyleHandlers.default); TrackBarInput.prototype.style.vAlign = 'center'; TrackBarInput.prototype.style.display = 'inline-block'; TrackBarInput.prototype.attributeHandlers.value = { set: _TrackBar.default.prototype.attributeHandlers.value.set, get: _TrackBar.default.prototype.attributeHandlers.value.get, descriptor: function () { return { type: 'number', max: this.domElt.rightValue, min: this.domElt.leftValue, floatFixed: 2, dependency: ['leftValue', 'rightValue'] }; } }; TrackBarInput.prototype.attributeHandlers.leftValue = { set: function (value) { this.domElt.leftValue = value; }, get: function () { return this.domElt.leftValue; }, descriptor: function () { return { type: 'number', max: this.domElt.rightValue, floatFixed: 2, dependency: ['rightValue', 'value'] }; } }; TrackBarInput.prototype.attributeHandlers.rightValue = { set: function (value) { this.domElt.rightValue = value; }, get: function () { return this.domElt.rightValue; }, descriptor: function () { return { type: 'number', min: this.domElt.leftValue, floatFixed: 2, dependency: ['leftValue', 'value'] }; } }; TrackBarInput.prototype.attributeHandlers.unit = { set: function (value) { this.domElt.unit = value; }, get: function () { return this.domElt.unit; }, descriptor: function () { return { type: 'text' }; } }; TrackBarInput.prototype.pinHandlers.value = Object.assign({}, _TrackBar.default.prototype.pinHandlers.value, { descriptor: function () { return { type: 'number', max: this.domElt.rightValue, min: this.domElt.leftValue, floatFixed: 2 }; } }); TrackBarInput.prototype.onCreate = function () { _ScalableComponent.default.prototype.onCreate.apply(this, arguments); this.style.height = 26; }; TrackBarInput.prototype.onCreated = function () { _ScalableComponent.default.prototype.onCreated.apply(this, arguments); this.domElt.on('change', function () { this.pinFire('value'); this.notifyChange(); }.bind(this)); }; TrackBarInput.prototype.measureMinSize = function () { return { width: 40, height: 26 }; }; _Assembler.AssemblerInstance.addClass(TrackBarInput); var _default = TrackBarInput; exports.default = _default;