@libs-ui/components-device-support 0.1.1-1
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/README.md +3 -0
- package/device-support-handle-click.directive.d.ts +13 -0
- package/esm2022/device-support-handle-click.directive.mjs +37 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/libs-ui-components-device-support.mjs +5 -0
- package/fesm2022/libs-ui-components-device-support.mjs +44 -0
- package/fesm2022/libs-ui-components-device-support.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AfterViewInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LibsUiComponentsDeviceSupportHandleClickDirective implements AfterViewInit {
|
|
4
|
+
readonly ignoreStopPropagation: import("@angular/core").InputSignal<boolean>;
|
|
5
|
+
private elementRef;
|
|
6
|
+
private destroyRef;
|
|
7
|
+
readonly elementHandleClick: import("@angular/core").InputSignal<HTMLElement | Window | Document | undefined>;
|
|
8
|
+
readonly outClick: import("@angular/core").OutputEmitterRef<Event>;
|
|
9
|
+
ngAfterViewInit(): void;
|
|
10
|
+
private get Element();
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibsUiComponentsDeviceSupportHandleClickDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LibsUiComponentsDeviceSupportHandleClickDirective, "[libsUiComponentsDeviceSupportHandleClickDirective]", never, { "ignoreStopPropagation": { "alias": "ignoreStopPropagation"; "required": false; "isSignal": true; }; "elementHandleClick": { "alias": "elementHandleClick"; "required": false; "isSignal": true; }; }, { "outClick": "outClick"; }, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { DestroyRef, Directive, ElementRef, inject, input, output } from '@angular/core';
|
|
2
|
+
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
3
|
+
import { getEventNameHandleClick } from '@libs-ui/utils';
|
|
4
|
+
import { fromEvent } from 'rxjs';
|
|
5
|
+
import { tap } from 'rxjs/operators';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export class LibsUiComponentsDeviceSupportHandleClickDirective {
|
|
8
|
+
ignoreStopPropagation = input(false);
|
|
9
|
+
elementRef = inject(ElementRef);
|
|
10
|
+
destroyRef = inject(DestroyRef);
|
|
11
|
+
elementHandleClick = input();
|
|
12
|
+
outClick = output();
|
|
13
|
+
ngAfterViewInit() {
|
|
14
|
+
fromEvent(this.Element, getEventNameHandleClick)
|
|
15
|
+
.pipe(tap((e) => {
|
|
16
|
+
if (!this.ignoreStopPropagation()) {
|
|
17
|
+
e.stopPropagation();
|
|
18
|
+
}
|
|
19
|
+
this.outClick.emit(e);
|
|
20
|
+
}), takeUntilDestroyed(this.destroyRef))
|
|
21
|
+
.subscribe();
|
|
22
|
+
}
|
|
23
|
+
get Element() {
|
|
24
|
+
return this.elementHandleClick() || this.elementRef.nativeElement;
|
|
25
|
+
}
|
|
26
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LibsUiComponentsDeviceSupportHandleClickDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
27
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.14", type: LibsUiComponentsDeviceSupportHandleClickDirective, isStandalone: true, selector: "[libsUiComponentsDeviceSupportHandleClickDirective]", inputs: { ignoreStopPropagation: { classPropertyName: "ignoreStopPropagation", publicName: "ignoreStopPropagation", isSignal: true, isRequired: false, transformFunction: null }, elementHandleClick: { classPropertyName: "elementHandleClick", publicName: "elementHandleClick", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { outClick: "outClick" }, ngImport: i0 });
|
|
28
|
+
}
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LibsUiComponentsDeviceSupportHandleClickDirective, decorators: [{
|
|
30
|
+
type: Directive,
|
|
31
|
+
args: [{
|
|
32
|
+
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
33
|
+
selector: '[libsUiComponentsDeviceSupportHandleClickDirective]',
|
|
34
|
+
standalone: true,
|
|
35
|
+
}]
|
|
36
|
+
}] });
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGV2aWNlLXN1cHBvcnQtaGFuZGxlLWNsaWNrLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMtdWkvY29tcG9uZW50cy9kZXZpY2Utc3VwcG9ydC9zcmMvZGV2aWNlLXN1cHBvcnQtaGFuZGxlLWNsaWNrLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWlCLFVBQVUsRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3hHLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDakMsT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOztBQU9yQyxNQUFNLE9BQU8saURBQWlEO0lBQ25ELHFCQUFxQixHQUFHLEtBQUssQ0FBVSxLQUFLLENBQUMsQ0FBQztJQUUvQyxVQUFVLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQ2hDLFVBQVUsR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7SUFFL0Isa0JBQWtCLEdBQUcsS0FBSyxFQUFtQyxDQUFDO0lBRTlELFFBQVEsR0FBRyxNQUFNLEVBQVMsQ0FBQztJQUVwQyxlQUFlO1FBQ2IsU0FBUyxDQUFRLElBQUksQ0FBQyxPQUFPLEVBQUUsdUJBQXVCLENBQUM7YUFDcEQsSUFBSSxDQUNILEdBQUcsQ0FBQyxDQUFDLENBQVEsRUFBRSxFQUFFO1lBQ2YsSUFBSSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsRUFBRSxFQUFFLENBQUM7Z0JBQ2xDLENBQUMsQ0FBQyxlQUFlLEVBQUUsQ0FBQztZQUN0QixDQUFDO1lBQ0QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDeEIsQ0FBQyxDQUFDLEVBQ0Ysa0JBQWtCLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUNwQzthQUNBLFNBQVMsRUFBRSxDQUFDO0lBQ2pCLENBQUM7SUFFRCxJQUFZLE9BQU87UUFDakIsT0FBTyxJQUFJLENBQUMsa0JBQWtCLEVBQUUsSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQztJQUNwRSxDQUFDO3dHQTFCVSxpREFBaUQ7NEZBQWpELGlEQUFpRDs7NEZBQWpELGlEQUFpRDtrQkFMN0QsU0FBUzttQkFBQztvQkFDVCw4REFBOEQ7b0JBQzlELFFBQVEsRUFBRSxxREFBcUQ7b0JBQy9ELFVBQVUsRUFBRSxJQUFJO2lCQUNqQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFmdGVyVmlld0luaXQsIERlc3Ryb3lSZWYsIERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgaW5qZWN0LCBpbnB1dCwgb3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyB0YWtlVW50aWxEZXN0cm95ZWQgfSBmcm9tICdAYW5ndWxhci9jb3JlL3J4anMtaW50ZXJvcCc7XG5pbXBvcnQgeyBnZXRFdmVudE5hbWVIYW5kbGVDbGljayB9IGZyb20gJ0BsaWJzLXVpL3V0aWxzJztcbmltcG9ydCB7IGZyb21FdmVudCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgdGFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5ARGlyZWN0aXZlKHtcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9kaXJlY3RpdmUtc2VsZWN0b3JcbiAgc2VsZWN0b3I6ICdbbGlic1VpQ29tcG9uZW50c0RldmljZVN1cHBvcnRIYW5kbGVDbGlja0RpcmVjdGl2ZV0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBMaWJzVWlDb21wb25lbnRzRGV2aWNlU3VwcG9ydEhhbmRsZUNsaWNrRGlyZWN0aXZlIGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCB7XG4gIHJlYWRvbmx5IGlnbm9yZVN0b3BQcm9wYWdhdGlvbiA9IGlucHV0PGJvb2xlYW4+KGZhbHNlKTtcblxuICBwcml2YXRlIGVsZW1lbnRSZWYgPSBpbmplY3QoRWxlbWVudFJlZik7XG4gIHByaXZhdGUgZGVzdHJveVJlZiA9IGluamVjdChEZXN0cm95UmVmKTtcblxuICByZWFkb25seSBlbGVtZW50SGFuZGxlQ2xpY2sgPSBpbnB1dDxIVE1MRWxlbWVudCB8IFdpbmRvdyB8IERvY3VtZW50PigpO1xuXG4gIHJlYWRvbmx5IG91dENsaWNrID0gb3V0cHV0PEV2ZW50PigpO1xuXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcbiAgICBmcm9tRXZlbnQ8RXZlbnQ+KHRoaXMuRWxlbWVudCwgZ2V0RXZlbnROYW1lSGFuZGxlQ2xpY2spXG4gICAgICAucGlwZShcbiAgICAgICAgdGFwKChlOiBFdmVudCkgPT4ge1xuICAgICAgICAgIGlmICghdGhpcy5pZ25vcmVTdG9wUHJvcGFnYXRpb24oKSkge1xuICAgICAgICAgICAgZS5zdG9wUHJvcGFnYXRpb24oKTtcbiAgICAgICAgICB9XG4gICAgICAgICAgdGhpcy5vdXRDbGljay5lbWl0KGUpO1xuICAgICAgICB9KSxcbiAgICAgICAgdGFrZVVudGlsRGVzdHJveWVkKHRoaXMuZGVzdHJveVJlZilcbiAgICAgIClcbiAgICAgIC5zdWJzY3JpYmUoKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0IEVsZW1lbnQoKTogSFRNTEVsZW1lbnQge1xuICAgIHJldHVybiB0aGlzLmVsZW1lbnRIYW5kbGVDbGljaygpIHx8IHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50O1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './device-support-handle-click.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzLXVpL2NvbXBvbmVudHMvZGV2aWNlLXN1cHBvcnQvc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMseUNBQXlDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2RldmljZS1zdXBwb3J0LWhhbmRsZS1jbGljay5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './index';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlicy11aS1jb21wb25lbnRzLWRldmljZS1zdXBwb3J0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy11aS9jb21wb25lbnRzL2RldmljZS1zdXBwb3J0L3NyYy9saWJzLXVpLWNvbXBvbmVudHMtZGV2aWNlLXN1cHBvcnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, inject, ElementRef, DestroyRef, output, Directive } from '@angular/core';
|
|
3
|
+
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
4
|
+
import { getEventNameHandleClick } from '@libs-ui/utils';
|
|
5
|
+
import { fromEvent } from 'rxjs';
|
|
6
|
+
import { tap } from 'rxjs/operators';
|
|
7
|
+
|
|
8
|
+
class LibsUiComponentsDeviceSupportHandleClickDirective {
|
|
9
|
+
ignoreStopPropagation = input(false);
|
|
10
|
+
elementRef = inject(ElementRef);
|
|
11
|
+
destroyRef = inject(DestroyRef);
|
|
12
|
+
elementHandleClick = input();
|
|
13
|
+
outClick = output();
|
|
14
|
+
ngAfterViewInit() {
|
|
15
|
+
fromEvent(this.Element, getEventNameHandleClick)
|
|
16
|
+
.pipe(tap((e) => {
|
|
17
|
+
if (!this.ignoreStopPropagation()) {
|
|
18
|
+
e.stopPropagation();
|
|
19
|
+
}
|
|
20
|
+
this.outClick.emit(e);
|
|
21
|
+
}), takeUntilDestroyed(this.destroyRef))
|
|
22
|
+
.subscribe();
|
|
23
|
+
}
|
|
24
|
+
get Element() {
|
|
25
|
+
return this.elementHandleClick() || this.elementRef.nativeElement;
|
|
26
|
+
}
|
|
27
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LibsUiComponentsDeviceSupportHandleClickDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
28
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.14", type: LibsUiComponentsDeviceSupportHandleClickDirective, isStandalone: true, selector: "[libsUiComponentsDeviceSupportHandleClickDirective]", inputs: { ignoreStopPropagation: { classPropertyName: "ignoreStopPropagation", publicName: "ignoreStopPropagation", isSignal: true, isRequired: false, transformFunction: null }, elementHandleClick: { classPropertyName: "elementHandleClick", publicName: "elementHandleClick", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { outClick: "outClick" }, ngImport: i0 });
|
|
29
|
+
}
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LibsUiComponentsDeviceSupportHandleClickDirective, decorators: [{
|
|
31
|
+
type: Directive,
|
|
32
|
+
args: [{
|
|
33
|
+
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
34
|
+
selector: '[libsUiComponentsDeviceSupportHandleClickDirective]',
|
|
35
|
+
standalone: true,
|
|
36
|
+
}]
|
|
37
|
+
}] });
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Generated bundle index. Do not edit.
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
export { LibsUiComponentsDeviceSupportHandleClickDirective };
|
|
44
|
+
//# sourceMappingURL=libs-ui-components-device-support.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"libs-ui-components-device-support.mjs","sources":["../../../../../libs-ui/components/device-support/src/device-support-handle-click.directive.ts","../../../../../libs-ui/components/device-support/src/libs-ui-components-device-support.ts"],"sourcesContent":["import { AfterViewInit, DestroyRef, Directive, ElementRef, inject, input, output } from '@angular/core';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\nimport { getEventNameHandleClick } from '@libs-ui/utils';\nimport { fromEvent } from 'rxjs';\nimport { tap } from 'rxjs/operators';\n\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[libsUiComponentsDeviceSupportHandleClickDirective]',\n standalone: true,\n})\nexport class LibsUiComponentsDeviceSupportHandleClickDirective implements AfterViewInit {\n readonly ignoreStopPropagation = input<boolean>(false);\n\n private elementRef = inject(ElementRef);\n private destroyRef = inject(DestroyRef);\n\n readonly elementHandleClick = input<HTMLElement | Window | Document>();\n\n readonly outClick = output<Event>();\n\n ngAfterViewInit() {\n fromEvent<Event>(this.Element, getEventNameHandleClick)\n .pipe(\n tap((e: Event) => {\n if (!this.ignoreStopPropagation()) {\n e.stopPropagation();\n }\n this.outClick.emit(e);\n }),\n takeUntilDestroyed(this.destroyRef)\n )\n .subscribe();\n }\n\n private get Element(): HTMLElement {\n return this.elementHandleClick() || this.elementRef.nativeElement;\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;MAWa,iDAAiD,CAAA;AACnD,IAAA,qBAAqB,GAAG,KAAK,CAAU,KAAK,CAAC;AAE9C,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IAE9B,kBAAkB,GAAG,KAAK,EAAmC;IAE7D,QAAQ,GAAG,MAAM,EAAS;IAEnC,eAAe,GAAA;AACb,QAAA,SAAS,CAAQ,IAAI,CAAC,OAAO,EAAE,uBAAuB;AACnD,aAAA,IAAI,CACH,GAAG,CAAC,CAAC,CAAQ,KAAI;AACf,YAAA,IAAI,CAAC,IAAI,CAAC,qBAAqB,EAAE,EAAE;gBACjC,CAAC,CAAC,eAAe,EAAE;YACrB;AACA,YAAA,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC;QACvB,CAAC,CAAC,EACF,kBAAkB,CAAC,IAAI,CAAC,UAAU,CAAC;AAEpC,aAAA,SAAS,EAAE;IAChB;AAEA,IAAA,IAAY,OAAO,GAAA;QACjB,OAAO,IAAI,CAAC,kBAAkB,EAAE,IAAI,IAAI,CAAC,UAAU,CAAC,aAAa;IACnE;wGA1BW,iDAAiD,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;4FAAjD,iDAAiD,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,qDAAA,EAAA,MAAA,EAAA,EAAA,qBAAA,EAAA,EAAA,iBAAA,EAAA,uBAAA,EAAA,UAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,kBAAA,EAAA,EAAA,iBAAA,EAAA,oBAAA,EAAA,UAAA,EAAA,oBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,EAAA,QAAA,EAAA,UAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;4FAAjD,iDAAiD,EAAA,UAAA,EAAA,CAAA;kBAL7D,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;;AAET,oBAAA,QAAQ,EAAE,qDAAqD;AAC/D,oBAAA,UAAU,EAAE,IAAI;AACjB,iBAAA;;;ACVD;;AAEG;;;;"}
|
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './device-support-handle-click.directive';
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@libs-ui/components-device-support",
|
|
3
|
+
"version": "0.1.1-1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": ">=18.0.0",
|
|
6
|
+
"@angular/core": ">=18.0.0"
|
|
7
|
+
},
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"module": "fesm2022/libs-ui-components-device-support.mjs",
|
|
10
|
+
"typings": "index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
"./package.json": {
|
|
13
|
+
"default": "./package.json"
|
|
14
|
+
},
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./index.d.ts",
|
|
17
|
+
"esm2022": "./esm2022/libs-ui-components-device-support.mjs",
|
|
18
|
+
"esm": "./esm2022/libs-ui-components-device-support.mjs",
|
|
19
|
+
"default": "./fesm2022/libs-ui-components-device-support.mjs"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"tslib": "^2.3.0"
|
|
24
|
+
}
|
|
25
|
+
}
|