[59329aa] | 1 | import * as i0 from '@angular/core';
|
---|
| 2 | import { forwardRef, EventEmitter, Component, ChangeDetectionStrategy, Input, Output, NgModule } from '@angular/core';
|
---|
| 3 | import * as i2 from '@angular/common';
|
---|
| 4 | import { CommonModule } from '@angular/common';
|
---|
| 5 | import * as i1 from 'primeng/ripple';
|
---|
| 6 | import { RippleModule } from 'primeng/ripple';
|
---|
| 7 | import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
---|
| 8 |
|
---|
| 9 | const TOGGLEBUTTON_VALUE_ACCESSOR = {
|
---|
| 10 | provide: NG_VALUE_ACCESSOR,
|
---|
| 11 | useExisting: forwardRef(() => ToggleButton),
|
---|
| 12 | multi: true
|
---|
| 13 | };
|
---|
| 14 | class ToggleButton {
|
---|
| 15 | constructor(cd) {
|
---|
| 16 | this.cd = cd;
|
---|
| 17 | this.iconPos = 'left';
|
---|
| 18 | this.onChange = new EventEmitter();
|
---|
| 19 | this.checked = false;
|
---|
| 20 | this.onModelChange = () => { };
|
---|
| 21 | this.onModelTouched = () => { };
|
---|
| 22 | }
|
---|
| 23 | toggle(event) {
|
---|
| 24 | if (!this.disabled) {
|
---|
| 25 | this.checked = !this.checked;
|
---|
| 26 | this.onModelChange(this.checked);
|
---|
| 27 | this.onModelTouched();
|
---|
| 28 | this.onChange.emit({
|
---|
| 29 | originalEvent: event,
|
---|
| 30 | checked: this.checked
|
---|
| 31 | });
|
---|
| 32 | this.cd.markForCheck();
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
| 35 | onBlur() {
|
---|
| 36 | this.onModelTouched();
|
---|
| 37 | }
|
---|
| 38 | writeValue(value) {
|
---|
| 39 | this.checked = value;
|
---|
| 40 | this.cd.markForCheck();
|
---|
| 41 | }
|
---|
| 42 | registerOnChange(fn) {
|
---|
| 43 | this.onModelChange = fn;
|
---|
| 44 | }
|
---|
| 45 | registerOnTouched(fn) {
|
---|
| 46 | this.onModelTouched = fn;
|
---|
| 47 | }
|
---|
| 48 | setDisabledState(val) {
|
---|
| 49 | this.disabled = val;
|
---|
| 50 | this.cd.markForCheck();
|
---|
| 51 | }
|
---|
| 52 | get hasOnLabel() {
|
---|
| 53 | return this.onLabel && this.onLabel.length > 0;
|
---|
| 54 | }
|
---|
| 55 | get hasOffLabel() {
|
---|
| 56 | return this.onLabel && this.onLabel.length > 0;
|
---|
| 57 | }
|
---|
| 58 | }
|
---|
| 59 | ToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ToggleButton, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
---|
| 60 | ToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.0", type: ToggleButton, selector: "p-toggleButton", inputs: { onLabel: "onLabel", offLabel: "offLabel", onIcon: "onIcon", offIcon: "offIcon", ariaLabelledBy: "ariaLabelledBy", disabled: "disabled", style: "style", styleClass: "styleClass", inputId: "inputId", tabindex: "tabindex", iconPos: "iconPos" }, outputs: { onChange: "onChange" }, host: { classAttribute: "p-element" }, providers: [TOGGLEBUTTON_VALUE_ACCESSOR], ngImport: i0, template: `
|
---|
| 61 | <div [ngClass]="{'p-button p-togglebutton p-component': true, 'p-button-icon-only': (onIcon && offIcon && !hasOnLabel && !hasOffLabel),'p-highlight': checked,'p-disabled':disabled}"
|
---|
| 62 | [ngStyle]="style" [class]="styleClass" (click)="toggle($event)" (keydown.enter)="toggle($event)"
|
---|
| 63 | [attr.tabindex]="disabled ? null : '0'" role="checkbox" [attr.aria-checked]="checked" pRipple>
|
---|
| 64 | <span *ngIf="onIcon||offIcon" [class]="checked ? this.onIcon : this.offIcon"
|
---|
| 65 | [ngClass]="{'p-button-icon': true, 'p-button-icon-left': (iconPos === 'left'), 'p-button-icon-right': (iconPos === 'right')}"></span>
|
---|
| 66 | <span class="p-button-label">{{checked ? hasOnLabel ? onLabel : '' : hasOffLabel ? offLabel : ''}}</span>
|
---|
| 67 | </div>
|
---|
| 68 | `, isInline: true, styles: [".p-button{margin:0;display:inline-flex;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none;align-items:center;vertical-align:bottom;text-align:center;overflow:hidden;position:relative}.p-button-label{flex:1 1 auto}.p-button-icon-right{order:1}.p-button:disabled{cursor:default}.p-button-icon-only{justify-content:center}.p-button-icon-only .p-button-label{visibility:hidden;width:0;flex:0 0 auto}.p-button-vertical{flex-direction:column}.p-button-icon-bottom{order:2}.p-buttonset .p-button{margin:0}.p-buttonset .p-button:not(:last-child){border-right:0 none}.p-buttonset .p-button:not(:first-of-type):not(:last-of-type){border-radius:0}.p-buttonset .p-button:first-of-type{border-top-right-radius:0;border-bottom-right-radius:0}.p-buttonset .p-button:last-of-type{border-top-left-radius:0;border-bottom-left-radius:0}.p-buttonset .p-button:focus{position:relative;z-index:1}.p-button-label{transition:all .2s}\n"], directives: [{ type: i1.Ripple, selector: "[pRipple]" }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
---|
| 69 | i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ToggleButton, decorators: [{
|
---|
| 70 | type: Component,
|
---|
| 71 | args: [{ selector: 'p-toggleButton', template: `
|
---|
| 72 | <div [ngClass]="{'p-button p-togglebutton p-component': true, 'p-button-icon-only': (onIcon && offIcon && !hasOnLabel && !hasOffLabel),'p-highlight': checked,'p-disabled':disabled}"
|
---|
| 73 | [ngStyle]="style" [class]="styleClass" (click)="toggle($event)" (keydown.enter)="toggle($event)"
|
---|
| 74 | [attr.tabindex]="disabled ? null : '0'" role="checkbox" [attr.aria-checked]="checked" pRipple>
|
---|
| 75 | <span *ngIf="onIcon||offIcon" [class]="checked ? this.onIcon : this.offIcon"
|
---|
| 76 | [ngClass]="{'p-button-icon': true, 'p-button-icon-left': (iconPos === 'left'), 'p-button-icon-right': (iconPos === 'right')}"></span>
|
---|
| 77 | <span class="p-button-label">{{checked ? hasOnLabel ? onLabel : '' : hasOffLabel ? offLabel : ''}}</span>
|
---|
| 78 | </div>
|
---|
| 79 | `, providers: [TOGGLEBUTTON_VALUE_ACCESSOR], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
---|
| 80 | 'class': 'p-element'
|
---|
| 81 | }, styles: [".p-button{margin:0;display:inline-flex;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none;align-items:center;vertical-align:bottom;text-align:center;overflow:hidden;position:relative}.p-button-label{flex:1 1 auto}.p-button-icon-right{order:1}.p-button:disabled{cursor:default}.p-button-icon-only{justify-content:center}.p-button-icon-only .p-button-label{visibility:hidden;width:0;flex:0 0 auto}.p-button-vertical{flex-direction:column}.p-button-icon-bottom{order:2}.p-buttonset .p-button{margin:0}.p-buttonset .p-button:not(:last-child){border-right:0 none}.p-buttonset .p-button:not(:first-of-type):not(:last-of-type){border-radius:0}.p-buttonset .p-button:first-of-type{border-top-right-radius:0;border-bottom-right-radius:0}.p-buttonset .p-button:last-of-type{border-top-left-radius:0;border-bottom-left-radius:0}.p-buttonset .p-button:focus{position:relative;z-index:1}.p-button-label{transition:all .2s}\n"] }]
|
---|
| 82 | }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { onLabel: [{
|
---|
| 83 | type: Input
|
---|
| 84 | }], offLabel: [{
|
---|
| 85 | type: Input
|
---|
| 86 | }], onIcon: [{
|
---|
| 87 | type: Input
|
---|
| 88 | }], offIcon: [{
|
---|
| 89 | type: Input
|
---|
| 90 | }], ariaLabelledBy: [{
|
---|
| 91 | type: Input
|
---|
| 92 | }], disabled: [{
|
---|
| 93 | type: Input
|
---|
| 94 | }], style: [{
|
---|
| 95 | type: Input
|
---|
| 96 | }], styleClass: [{
|
---|
| 97 | type: Input
|
---|
| 98 | }], inputId: [{
|
---|
| 99 | type: Input
|
---|
| 100 | }], tabindex: [{
|
---|
| 101 | type: Input
|
---|
| 102 | }], iconPos: [{
|
---|
| 103 | type: Input
|
---|
| 104 | }], onChange: [{
|
---|
| 105 | type: Output
|
---|
| 106 | }] } });
|
---|
| 107 | class ToggleButtonModule {
|
---|
| 108 | }
|
---|
| 109 | ToggleButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ToggleButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
---|
| 110 | ToggleButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ToggleButtonModule, declarations: [ToggleButton], imports: [CommonModule, RippleModule], exports: [ToggleButton] });
|
---|
| 111 | ToggleButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ToggleButtonModule, imports: [[CommonModule, RippleModule]] });
|
---|
| 112 | i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ToggleButtonModule, decorators: [{
|
---|
| 113 | type: NgModule,
|
---|
| 114 | args: [{
|
---|
| 115 | imports: [CommonModule, RippleModule],
|
---|
| 116 | exports: [ToggleButton],
|
---|
| 117 | declarations: [ToggleButton]
|
---|
| 118 | }]
|
---|
| 119 | }] });
|
---|
| 120 |
|
---|
| 121 | /**
|
---|
| 122 | * Generated bundle index. Do not edit.
|
---|
| 123 | */
|
---|
| 124 |
|
---|
| 125 | export { TOGGLEBUTTON_VALUE_ACCESSOR, ToggleButton, ToggleButtonModule };
|
---|