@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
138 lines (111 loc) • 4.54 kB
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
require('./kendo.core.js');
require('./kendo.licensing.js');
require('@progress/kendo-licensing');
const __meta__ = {
id: "floatinglabel",
name: "FloatingLabel",
category: "framework",
depends: ["core"],
hidden: true
};
(function($, undefined$1) {
var kendo = window.kendo,
Widget = kendo.ui.Widget,
ui = kendo.ui,
NS = ".kendoFloatingLabel",
FLOATINGLABELCONTAINER = "k-floating-label-container",
EMPTY = "k-empty",
FOCUSED = "k-focus",
STATEDISABLED = "k-disabled",
STATEREADONLY = "k-readonly",
FLOATINGLABEL_OFFSET_Y = "--kendo-floating-label-offset-y",
FLOATINGLABEL_OFFSET_X = "--kendo-floating-label-offset-x";
var FloatingLabel = Widget.extend({
init: function(element, options) {
var that = this;
Widget.fn.init.call(that, element, options);
options = $.extend(true, {}, options);
that.widget = that.options.widget;
that.widgetWrapper = that.widget.wrapper[0];
that.refresh();
that._editable({
readonly: that.options.widget.options.readonly !== undefined$1 ? that.options.widget.options.readonly : false,
disable: that.options.widget.options.enable !== undefined$1 ? !(that.options.widget.options.enable) : false
});
if (that.widgetWrapper.style.width) {
that.element.css("width", that.widgetWrapper.style.width);
that.widgetWrapper.style.width = "100%";
}
that.element.addClass(FLOATINGLABELCONTAINER);
kendo.notify(that);
},
options: {
name: 'FloatingLabel',
widget: null,
floatCheck: ({ element }) => !element.val()
},
readonly: function(readonly) {
this._editable({
readonly: readonly === undefined$1 ? true : readonly,
disable: false
});
},
enable: function(enable) {
this._editable({
readonly: false,
disable: !(enable = enable === undefined$1 ? true : enable)
});
},
refresh: function() {
var that = this;
var element = that.element;
var inputInner = that.options.widget.wrapper.find(".k-input-inner");
if (inputInner.length > 0) {
var labelHeight = that.element.find("> .k-floating-label").height();
var offsetX = inputInner.position().left + Number.parseInt(inputInner.css('padding-left'));
var offsetY = inputInner.position().top + Number.parseInt(inputInner.css('padding-top')) + labelHeight;
element[0].style.setProperty(FLOATINGLABEL_OFFSET_X, offsetX + "px");
element[0].style.setProperty(FLOATINGLABEL_OFFSET_Y, offsetY + "px");
}
element
.removeClass(EMPTY)
.removeClass(FOCUSED);
if (that.options.floatCheck({ element: that.options.widget.element, floating: that.element })) {
element.addClass(EMPTY);
}
if (document.activeElement === that.options.widget.element[0]
|| (that.options.widget.input && document.activeElement === that.options.widget.input[0])) {
element.addClass(FOCUSED);
}
},
destroy: function() {
var that = this;
that.element.off(NS);
Widget.fn.destroy.call(that);
},
_editable: function(options) {
var that = this;
var element = that.element;
var disable = options.disable;
var readonly = options.readonly;
element.off(NS);
if (!readonly && !disable) {
element
.removeClass(STATEDISABLED)
.removeClass(STATEREADONLY);
element.on("focusin" + NS, that.refresh.bind(that));
element.on("focusout" + NS, that.refresh.bind(that));
} else {
element
.toggleClass(STATEDISABLED, disable)
.toggleClass(STATEREADONLY, readonly);
}
}
});
ui.plugin(FloatingLabel);
})(window.kendo.jQuery);
var kendo$1 = kendo;
exports.__meta__ = __meta__;
exports.default = kendo$1;
;