source: trip-planner-front/node_modules/primeng/fesm2015/primeng-progressbar.mjs.map@ 8d391a1

Last change on this file since 8d391a1 was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 2.6 KB
Line 
1{"version":3,"file":"primeng-progressbar.mjs","sources":["../../src/app/components/progressbar/progressbar.ts","../../src/app/components/progressbar/primeng-progressbar.ts"],"sourcesContent":["import {NgModule,Component,Input,ChangeDetectionStrategy, ViewEncapsulation} from '@angular/core';\nimport {CommonModule} from '@angular/common';\n\n@Component({\n selector: 'p-progressBar',\n template: `\n <div [class]=\"styleClass\" [ngStyle]=\"style\" role=\"progressbar\" aria-valuemin=\"0\" [attr.aria-valuenow]=\"value\" aria-valuemax=\"100\"\n [ngClass]=\"{'p-progressbar p-component': true, 'p-progressbar-determinate': (mode === 'determinate'), 'p-progressbar-indeterminate': (mode === 'indeterminate')}\">\n <div *ngIf=\"mode === 'determinate'\" class=\"p-progressbar-value p-progressbar-value-animate\" [style.width]=\"value + '%'\" style=\"display:block\"></div>\n <div *ngIf=\"mode === 'determinate' && showValue\" class=\"p-progressbar-label\" [style.display]=\"value != null ? 'block' : 'none'\">{{value}}{{unit}}</div>\n <div *ngIf=\"mode === 'indeterminate'\" class=\"p-progressbar-indeterminate-container\">\n <div class=\"p-progressbar-value p-progressbar-value-animate\"></div>\n </div>\n </div>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n styleUrls: ['./progressbar.css'],\n host: {\n 'class': 'p-element'\n }\n})\nexport class ProgressBar {\n\n @Input() value: any;\n\n @Input() showValue: boolean = true;\n\n @Input() style: any;\n\n @Input() styleClass: string;\n\n @Input() unit: string = '%';\n\n @Input() mode: string = 'determinate';\n\n}\n\n@NgModule({\n imports: [CommonModule],\n exports: [ProgressBar],\n declarations: [ProgressBar]\n})\nexport class ProgressBarModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;;;MAsBa,WAAW;IAnBxB;QAuBa,cAAS,GAAY,IAAI,CAAC;QAM1B,SAAI,GAAW,GAAG,CAAC;QAEnB,SAAI,GAAW,aAAa,CAAC;KAEzC;;wGAdY,WAAW;4FAAX,WAAW,sNAjBV;;;;;;;;;KAST;2FAQQ,WAAW;kBAnBvB,SAAS;+BACI,eAAe,YACf;;;;;;;;;KAST,mBACgB,uBAAuB,CAAC,MAAM,iBAChC,iBAAiB,CAAC,IAAI,QAE/B;wBACF,OAAO,EAAE,WAAW;qBACvB;8BAIQ,KAAK;sBAAb,KAAK;gBAEG,SAAS;sBAAjB,KAAK;gBAEG,KAAK;sBAAb,KAAK;gBAEG,UAAU;sBAAlB,KAAK;gBAEG,IAAI;sBAAZ,KAAK;gBAEG,IAAI;sBAAZ,KAAK;;MASG,iBAAiB;;8GAAjB,iBAAiB;+GAAjB,iBAAiB,iBArBjB,WAAW,aAiBV,YAAY,aAjBb,WAAW;+GAqBX,iBAAiB,YAJjB,CAAC,YAAY,CAAC;2FAId,iBAAiB;kBAL7B,QAAQ;mBAAC;oBACN,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,WAAW,CAAC;oBACtB,YAAY,EAAE,CAAC,WAAW,CAAC;iBAC9B;;;AC1CD;;;;;;"}
Note: See TracBrowser for help on using the repository browser.