{"version":3,"file":"src_app_modules_swiperBanner_swiperBanner_module_ts.js","mappings":";;;;;;;;;;;;;;;;;AAEA;AAC4D;;;;;;ICe5CG,uDAAAA,aAAmE;;;;IAArCA,wDAAAA,mCAAAA,4DAAAA,CAA8B;;;;;IAHhEA,4DAAAA,aAAiC;IAE7BA,uDAAAA,aAA4C;IAC5CA,wDAAAA,uFAAmE;IACnEA,4DAAAA,YAAqD;IAAAA,oDAAAA,GAAqB;IAAAA,0DAAAA,EAAI;IAEhFA,4DAAAA,cAAsB;IACpBA,uDAAAA,cAAmC;IACrCA,0DAAAA,EAAM;;;;IANCA,uDAAAA,GAAgC;IAAhCA,wDAAAA,qCAAAA,4DAAAA,CAAgC;IAC/BA,uDAAAA,GAAsB;IAAtBA,wDAAAA,6BAAsB;IACzBA,uDAAAA,GAA2B;IAA3BA,mEAAAA,8BAAAA,2DAAAA,CAA2B;IAAuBA,uDAAAA,GAAqB;IAArBA,+DAAAA,sBAAqB;IAGrEA,uDAAAA,GAAsB;IAAtBA,mEAAAA,yBAAAA,2DAAAA,CAAsB;;;;;IATnCA,qEAAAA,GAAsE;IACpEA,wDAAAA,wFAWc;IAChBA,mEAAAA,EAAe;;;;;;;;ADtBvB;AACAH,kDAAc,CAAC,CAACC,8CAAU,EAAEC,8CAAU,CAAC,CAAC;AAKlC,MAAOG,qBAAqB;AAArBA,qBAAqB;mBAArBA,qBAAqB;AAAA;AAArBA,qBAAqB;QAArBA,qBAAqB;EAAAC;EAAAC;IAAAC;EAAA;EAAAC;EAAAC;EAAAC;EAAAC;IAAA;MCVlCT,4DAAAA,iBAA2D;MAEvDA,uDAAAA,aAA4C;MAC9CA,0DAAAA,EAAM;MAERA,4DAAAA,iBAA6B;MAQrBA,wDAAAA,2EAae;MACjBA,0DAAAA,EAAS;;;MAzBNA,uDAAAA,GAAgC;MAAhCA,wDAAAA,sCAAAA,4DAAAA,CAAgC;MAM3BA,uDAAAA,GAAmB;MAAnBA,wDAAAA,oBAAmB;MAKQA,uDAAAA,GAAyB;MAAzBA,wDAAAA,qCAAyB;;;;;;;;;;;;;;;;;;;;;;;;;ACL5D,MAAOU,8BAA8B;EAEvCC,YACUC,UAAsB,EACtBC,gBAAgD;IADhD,eAAU,GAAVD,UAAU;IACV,qBAAgB,GAAhBC,gBAAgB;IAExB,IAAI,CAACR,MAAM,GAAG,IAAI,CAACQ,gBAAgB,CAACC,KAAK,CACvC,IAAI,CAACF,UAAU,CAChB;EACH;;AATSF,8BAA8B;mBAA9BA,8BAA8B;AAAA;AAA9BA,8BAA8B;QAA9BA,8BAA8B;EAAAP;EAAAG;EAAAC;EAAAC;EAAAC;IAAA;MCR3CT,4DAAAA,cAAS;MACLA,uDAAAA,2BAAyD;MAC7DA,0DAAAA,EAAU;;;MADaA,uDAAAA,GAAiB;MAAjBA,wDAAAA,sBAAiB;;;;;;;;;;;;;;;;;;;;;;;ACAoC;AACQ;AAE7B;;AAqB/C,MAAOgB,kBAAkB;AAAlBA,kBAAkB;mBAAlBA,kBAAkB;AAAA;AAAlBA,kBAAkB;QAAlBA;AAAkB;AAAlBA,kBAAkB;aAXlB,CACT;IACEC,OAAO,EAAE,YAAY;IACrBC,QAAQ,EAAE,CAACR,6FAA8B,EAAER,qFAAqB,CAAC;IACjEiB,KAAK,EAAE;GACR,CACF;EAAAC,UARCL,+DAAY;AAAA;;sHAaHC,kBAAkB;IAAAK,eAjBzBX,6FAA8B,EAC9BR,qFAAqB;IAAAkB,UAGvBL,+DAAY;EAAA;AAAA","sources":["./src/app/modules/swiperBanner/components/swiperBanner.component.ts","./src/app/modules/swiperBanner/components/templates/swiperBanner.component.html","./src/app/modules/swiperBanner/swiperBanner-container.component.ts","./src/app/modules/swiperBanner/templates/swiperBanner-container.component.html","./src/app/modules/swiperBanner/swiperBanner.module.ts"],"sourcesContent":["import { Component, Input } from \"@angular/core\";\r\nimport { BannerSwiperConfiguration } from \"../models/bannerSwiper-config.model\";\r\n// import Swiper core and required modules\r\nimport SwiperCore, { Pagination, Navigation } from \"swiper\";\r\n// install Swiper modules\r\nSwiperCore.use([Pagination, Navigation]);\r\n@Component({\r\n selector: 'app-swiper-banner',\r\n templateUrl: './templates/swiperBanner.component.html'\r\n})\r\nexport class SwiperBannerComponent {\r\n @Input()\r\n config!: BannerSwiperConfiguration;\r\n}","
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n {{slider.buttonText}}\r\n
\r\n
\r\n \"\"\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
","import { Component, ElementRef } from \"@angular/core\";\r\nimport { DataInitialValueServiceService } from \"../core/services/data-initial-value-service.service\";\r\nimport { BannerSwiperConfiguration } from \"./models/bannerSwiper-config.model\";\r\n\r\n@Component({\r\n selector: 'app-swiper-banner-container',\r\n templateUrl: './templates/swiperBanner-container.component.html'\r\n})\r\nexport class SwiperBannerContainerComponent { \r\n config: BannerSwiperConfiguration;\r\n constructor(\r\n private elementRef: ElementRef,\r\n private dataInitialValue: DataInitialValueServiceService\r\n ) {\r\n this.config = this.dataInitialValue.Parse(\r\n this.elementRef\r\n );\r\n }\r\n}","
\r\n \r\n
","import { NgModule } from \"@angular/core\";\r\nimport { SwiperBannerComponent } from \"./components/swiperBanner.component\";\r\nimport { SwiperBannerContainerComponent } from \"./swiperBanner-container.component\";\r\nimport { SwiperModule } from 'swiper/angular';\r\nimport { SharedModule } from \"../shared/shared.module\";\r\n\r\n@NgModule({\r\n declarations: [\r\n SwiperBannerContainerComponent,\r\n SwiperBannerComponent\r\n ],\r\n imports: [\r\n SharedModule,\r\n ],\r\n providers: [\r\n {\r\n provide: 'components',\r\n useValue: [SwiperBannerContainerComponent, SwiperBannerComponent],\r\n multi: true\r\n }\r\n ],\r\n entryComponents: [\r\n SwiperBannerContainerComponent\r\n ],\r\n })\r\n export class SwiperBannerModule { }"],"names":["SwiperCore","Pagination","Navigation","i0","use","SwiperBannerComponent","selectors","inputs","config","decls","vars","consts","template","SwiperBannerContainerComponent","constructor","elementRef","dataInitialValue","Parse","SharedModule","SwiperBannerModule","provide","useValue","multi","imports","declarations"],"sourceRoot":"webpack:///","x_google_ignoreList":[]}