117 lines
6.4 KiB
JavaScript
117 lines
6.4 KiB
JavaScript
(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('primeng/ripple'), require('@angular/forms')) :
|
|
typeof define === 'function' && define.amd ? define('primeng/togglebutton', ['exports', '@angular/core', '@angular/common', 'primeng/ripple', '@angular/forms'], factory) :
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.primeng = global.primeng || {}, global.primeng.togglebutton = {}), global.ng.core, global.ng.common, global.primeng.ripple, global.ng.forms));
|
|
}(this, (function (exports, core, common, ripple, forms) { 'use strict';
|
|
|
|
var TOGGLEBUTTON_VALUE_ACCESSOR = {
|
|
provide: forms.NG_VALUE_ACCESSOR,
|
|
useExisting: core.forwardRef(function () { return ToggleButton; }),
|
|
multi: true
|
|
};
|
|
var ToggleButton = /** @class */ (function () {
|
|
function ToggleButton(cd) {
|
|
this.cd = cd;
|
|
this.iconPos = 'left';
|
|
this.onChange = new core.EventEmitter();
|
|
this.checked = false;
|
|
this.onModelChange = function () { };
|
|
this.onModelTouched = function () { };
|
|
}
|
|
ToggleButton.prototype.toggle = function (event) {
|
|
if (!this.disabled) {
|
|
this.checked = !this.checked;
|
|
this.onModelChange(this.checked);
|
|
this.onModelTouched();
|
|
this.onChange.emit({
|
|
originalEvent: event,
|
|
checked: this.checked
|
|
});
|
|
this.cd.markForCheck();
|
|
}
|
|
};
|
|
ToggleButton.prototype.onBlur = function () {
|
|
this.onModelTouched();
|
|
};
|
|
ToggleButton.prototype.writeValue = function (value) {
|
|
this.checked = value;
|
|
this.cd.markForCheck();
|
|
};
|
|
ToggleButton.prototype.registerOnChange = function (fn) {
|
|
this.onModelChange = fn;
|
|
};
|
|
ToggleButton.prototype.registerOnTouched = function (fn) {
|
|
this.onModelTouched = fn;
|
|
};
|
|
ToggleButton.prototype.setDisabledState = function (val) {
|
|
this.disabled = val;
|
|
this.cd.markForCheck();
|
|
};
|
|
Object.defineProperty(ToggleButton.prototype, "hasOnLabel", {
|
|
get: function () {
|
|
return this.onLabel && this.onLabel.length > 0;
|
|
},
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(ToggleButton.prototype, "hasOffLabel", {
|
|
get: function () {
|
|
return this.onLabel && this.onLabel.length > 0;
|
|
},
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
return ToggleButton;
|
|
}());
|
|
ToggleButton.decorators = [
|
|
{ type: core.Component, args: [{
|
|
selector: 'p-toggleButton',
|
|
template: "\n <div [ngClass]=\"{'p-button p-togglebutton p-component': true, 'p-button-icon-only': (onIcon && offIcon && !hasOnLabel && !hasOffLabel),'p-highlight': checked,'p-disabled':disabled}\" \n [ngStyle]=\"style\" [class]=\"styleClass\" (click)=\"toggle($event)\" (keydown.enter)=\"toggle($event)\"\n [attr.tabindex]=\"disabled ? null : '0'\" role=\"checkbox\" [attr.aria-checked]=\"checked\" pRipple>\n <span *ngIf=\"onIcon||offIcon\" [class]=\"checked ? this.onIcon : this.offIcon\" \n [ngClass]=\"{'p-button-icon': true, 'p-button-icon-left': (iconPos === 'left'), 'p-button-icon-right': (iconPos === 'right')}\"></span>\n <span class=\"p-button-label\">{{checked ? hasOnLabel ? onLabel : '' : hasOffLabel ? offLabel : ''}}</span>\n </div>\n ",
|
|
providers: [TOGGLEBUTTON_VALUE_ACCESSOR],
|
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
styles: [".p-button{-moz-user-select:none;-ms-flex-align:center;-ms-user-select:none;-webkit-user-select:none;align-items:center;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;margin:0;overflow:hidden;position:relative;text-align:center;user-select:none;vertical-align:bottom}.p-button-label{-ms-flex:1 1 auto;flex:1 1 auto}.p-button-icon-right{-ms-flex-order:1;order:1}.p-button:disabled{cursor:default}.p-button-icon-only{-ms-flex-pack:center;justify-content:center}.p-button-icon-only .p-button-label{-ms-flex:0 0 auto;flex:0 0 auto;visibility:hidden;width:0}.p-button-vertical{-ms-flex-direction:column;flex-direction:column}.p-button-icon-bottom{-ms-flex-order:2;order:2}.p-buttonset .p-button{margin:0}.p-buttonset .p-button:not(:last-child){border-right:0}.p-buttonset .p-button:not(:first-of-type):not(:last-of-type){border-radius:0}.p-buttonset .p-button:first-of-type{border-bottom-right-radius:0;border-top-right-radius:0}.p-buttonset .p-button:last-of-type{border-bottom-left-radius:0;border-top-left-radius:0}.p-buttonset .p-button:focus{position:relative;z-index:1}"]
|
|
},] }
|
|
];
|
|
ToggleButton.ctorParameters = function () { return [
|
|
{ type: core.ChangeDetectorRef }
|
|
]; };
|
|
ToggleButton.propDecorators = {
|
|
onLabel: [{ type: core.Input }],
|
|
offLabel: [{ type: core.Input }],
|
|
onIcon: [{ type: core.Input }],
|
|
offIcon: [{ type: core.Input }],
|
|
ariaLabelledBy: [{ type: core.Input }],
|
|
disabled: [{ type: core.Input }],
|
|
style: [{ type: core.Input }],
|
|
styleClass: [{ type: core.Input }],
|
|
inputId: [{ type: core.Input }],
|
|
tabindex: [{ type: core.Input }],
|
|
iconPos: [{ type: core.Input }],
|
|
onChange: [{ type: core.Output }]
|
|
};
|
|
var ToggleButtonModule = /** @class */ (function () {
|
|
function ToggleButtonModule() {
|
|
}
|
|
return ToggleButtonModule;
|
|
}());
|
|
ToggleButtonModule.decorators = [
|
|
{ type: core.NgModule, args: [{
|
|
imports: [common.CommonModule, ripple.RippleModule],
|
|
exports: [ToggleButton],
|
|
declarations: [ToggleButton]
|
|
},] }
|
|
];
|
|
|
|
/**
|
|
* Generated bundle index. Do not edit.
|
|
*/
|
|
|
|
exports.TOGGLEBUTTON_VALUE_ACCESSOR = TOGGLEBUTTON_VALUE_ACCESSOR;
|
|
exports.ToggleButton = ToggleButton;
|
|
exports.ToggleButtonModule = ToggleButtonModule;
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
})));
|
|
//# sourceMappingURL=primeng-togglebutton.umd.js.map
|