@pepperi-addons/ngx-lib 0.4.0-angular14.52 → 0.4.0-angular14.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/form/internal-list.component.mjs +5 -2
- package/esm2020/list/list.component.mjs +5 -2
- package/esm2020/size-detector/size-detector.component.mjs +2 -2
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs +4 -1
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +4 -1
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs +4 -1
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +4 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -65,7 +65,7 @@ class PepSizeDetectorComponent {
|
|
|
65
65
|
detectScreenSize() {
|
|
66
66
|
this.currentSize = this.sizes.find((x) => {
|
|
67
67
|
const el = this.hostElement.nativeElement.querySelector(`.${this.prefix}${x.id}`);
|
|
68
|
-
const isVisible =
|
|
68
|
+
const isVisible = getComputedStyle(el).display !== 'none';
|
|
69
69
|
return isVisible;
|
|
70
70
|
});
|
|
71
71
|
this.layoutService.onResize(this.currentSize.id);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pepperi-addons-ngx-lib-size-detector.mjs","sources":["../../../projects/ngx-lib/size-detector/size-detector.component.ts","../../../projects/ngx-lib/size-detector/size-detector.component.html","../../../projects/ngx-lib/size-detector/size-detector.module.ts","../../../projects/ngx-lib/size-detector/public-api.ts","../../../projects/ngx-lib/size-detector/pepperi-addons-ngx-lib-size-detector.ts"],"sourcesContent":["import {\n Component,\n OnInit,\n AfterViewInit,\n HostListener,\n ElementRef,\n Input,\n Output,\n EventEmitter,\n} from '@angular/core';\nimport { PepLayoutService, PepScreenSizeType } from '@pepperi-addons/ngx-lib';\n\ninterface IPepSizeDetectorItem {\n id: PepScreenSizeType;\n name: string;\n css: string;\n}\n\n@Component({\n selector: 'pep-size-detector',\n templateUrl: './size-detector.component.html',\n})\nexport class PepSizeDetectorComponent implements AfterViewInit {\n @Input() showScreenSize = false;\n\n private _useAsWebComponent = false;\n @Input()\n set useAsWebComponent(value: boolean) {\n if (value) {\n this.exportFunctionsOnHostElement();\n }\n }\n get useAsWebComponent(): boolean {\n return this._useAsWebComponent;\n }\n\n @Output()\n sizeChange: EventEmitter<IPepSizeDetectorItem> = new EventEmitter<IPepSizeDetectorItem>();\n\n prefix = 'is-';\n sizes: Array<IPepSizeDetectorItem> = [\n {\n id: PepScreenSizeType.XS,\n name: 'xs',\n css: `d-block d-sm-none`,\n },\n {\n id: PepScreenSizeType.SM,\n name: 'sm',\n css: `d-none d-sm-block d-md-none`,\n },\n {\n id: PepScreenSizeType.MD,\n name: 'md',\n css: `d-none d-md-block d-lg-none`,\n },\n {\n id: PepScreenSizeType.LG,\n name: 'lg',\n css: `d-none d-lg-block d-xl-none`,\n },\n {\n id: PepScreenSizeType.XL,\n name: 'xl',\n css: `d-none d-xl-block`,\n },\n ];\n\n private currentSize: IPepSizeDetectorItem;\n\n constructor(\n private hostElement: ElementRef,\n private layoutService: PepLayoutService\n ) {\n this.layoutService.onResize$.subscribe((size: PepScreenSizeType) => {\n this.currentSize = this.sizes.find((s) => s.id === size);\n this.sizeChange.emit(this.currentSize);\n });\n }\n\n @HostListener('window:resize', ['$event'])\n onResize(event): void {\n this.detectScreenSize();\n }\n\n ngAfterViewInit(): void {\n this.detectScreenSize();\n }\n\n private detectScreenSize(): void {\n this.currentSize = this.sizes.find((x) => {\n const el = this.hostElement.nativeElement.querySelector(\n `.${this.prefix}${x.id}`\n );\n const isVisible =
|
|
1
|
+
{"version":3,"file":"pepperi-addons-ngx-lib-size-detector.mjs","sources":["../../../projects/ngx-lib/size-detector/size-detector.component.ts","../../../projects/ngx-lib/size-detector/size-detector.component.html","../../../projects/ngx-lib/size-detector/size-detector.module.ts","../../../projects/ngx-lib/size-detector/public-api.ts","../../../projects/ngx-lib/size-detector/pepperi-addons-ngx-lib-size-detector.ts"],"sourcesContent":["import {\n Component,\n OnInit,\n AfterViewInit,\n HostListener,\n ElementRef,\n Input,\n Output,\n EventEmitter,\n} from '@angular/core';\nimport { PepLayoutService, PepScreenSizeType } from '@pepperi-addons/ngx-lib';\n\ninterface IPepSizeDetectorItem {\n id: PepScreenSizeType;\n name: string;\n css: string;\n}\n\n@Component({\n selector: 'pep-size-detector',\n templateUrl: './size-detector.component.html',\n})\nexport class PepSizeDetectorComponent implements AfterViewInit {\n @Input() showScreenSize = false;\n\n private _useAsWebComponent = false;\n @Input()\n set useAsWebComponent(value: boolean) {\n if (value) {\n this.exportFunctionsOnHostElement();\n }\n }\n get useAsWebComponent(): boolean {\n return this._useAsWebComponent;\n }\n\n @Output()\n sizeChange: EventEmitter<IPepSizeDetectorItem> = new EventEmitter<IPepSizeDetectorItem>();\n\n prefix = 'is-';\n sizes: Array<IPepSizeDetectorItem> = [\n {\n id: PepScreenSizeType.XS,\n name: 'xs',\n css: `d-block d-sm-none`,\n },\n {\n id: PepScreenSizeType.SM,\n name: 'sm',\n css: `d-none d-sm-block d-md-none`,\n },\n {\n id: PepScreenSizeType.MD,\n name: 'md',\n css: `d-none d-md-block d-lg-none`,\n },\n {\n id: PepScreenSizeType.LG,\n name: 'lg',\n css: `d-none d-lg-block d-xl-none`,\n },\n {\n id: PepScreenSizeType.XL,\n name: 'xl',\n css: `d-none d-xl-block`,\n },\n ];\n\n private currentSize: IPepSizeDetectorItem;\n\n constructor(\n private hostElement: ElementRef,\n private layoutService: PepLayoutService\n ) {\n this.layoutService.onResize$.subscribe((size: PepScreenSizeType) => {\n this.currentSize = this.sizes.find((s) => s.id === size);\n this.sizeChange.emit(this.currentSize);\n });\n }\n\n @HostListener('window:resize', ['$event'])\n onResize(event): void {\n this.detectScreenSize();\n }\n\n ngAfterViewInit(): void {\n this.detectScreenSize();\n }\n\n private detectScreenSize(): void {\n this.currentSize = this.sizes.find((x) => {\n const el = this.hostElement.nativeElement.querySelector(\n `.${this.prefix}${x.id}`\n );\n const isVisible = getComputedStyle(el).display !== 'none';\n\n return isVisible;\n });\n\n this.layoutService.onResize(this.currentSize.id);\n }\n\n private exportFunctionsOnHostElement() {\n // This is for web component usage for use those functions.\n this.hostElement.nativeElement.getCurrentSize = this.getCurrentSize.bind(\n this\n );\n }\n\n getCurrentSize(): IPepSizeDetectorItem {\n return this.currentSize;\n }\n}\n","<!-- Bootstrap -->\n<!-- <div *ngFor=\"let s of sizes\" class=\"{{s.css + ' ' + (prefix + s.id) }}\">{{s.name}}</div> -->\n\n<!-- Angular flex-layout -->\n<div *ngFor=\"let s of sizes\" fxShow.xs=\"{{s.name == 'xs'}}\" fxShow.sm=\"{{s.name == 'sm'}}\"\n fxShow.md=\"{{s.name == 'md'}}\" fxShow.lg=\"{{s.name == 'lg'}}\" fxShow.xl=\"{{s.name == 'xl'}}\"\n class=\"{{s.css + ' ' + (prefix + s.id) }}\">\n <ng-container *ngIf=\"showScreenSize\"> The current screen size is - {{s.name}}</ng-container>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { FlexLayoutModule } from '@angular/flex-layout';\n\nimport { PepNgxLibModule } from '@pepperi-addons/ngx-lib';\n\nimport { PepSizeDetectorComponent } from './size-detector.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n FlexLayoutModule,\n // ngx-lib modules\n PepNgxLibModule,\n ],\n exports: [PepSizeDetectorComponent],\n declarations: [PepSizeDetectorComponent],\n})\nexport class PepSizeDetectorModule {}\n","/*\n * Public API Surface of ngx-lib/size-detector\n */\nexport * from './size-detector.module';\nexport * from './size-detector.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|