@wemake4u/form-player-se 1.0.0
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 +17 -0
- package/esm2022/lib/controls/accordion.mjs +7 -0
- package/esm2022/lib/controls/button.mjs +7 -0
- package/esm2022/lib/controls/checkbox.mjs +7 -0
- package/esm2022/lib/controls/checklist.mjs +7 -0
- package/esm2022/lib/controls/chipchecklist.mjs +7 -0
- package/esm2022/lib/controls/chipradio.mjs +7 -0
- package/esm2022/lib/controls/control.mjs +65 -0
- package/esm2022/lib/controls/date.mjs +7 -0
- package/esm2022/lib/controls/dynamiclist.mjs +4 -0
- package/esm2022/lib/controls/factory.mjs +106 -0
- package/esm2022/lib/controls/filepicker.mjs +7 -0
- package/esm2022/lib/controls/form.mjs +4 -0
- package/esm2022/lib/controls/group.mjs +4 -0
- package/esm2022/lib/controls/html.mjs +4 -0
- package/esm2022/lib/controls/iframe.mjs +4 -0
- package/esm2022/lib/controls/image.mjs +4 -0
- package/esm2022/lib/controls/number.mjs +7 -0
- package/esm2022/lib/controls/radio.mjs +7 -0
- package/esm2022/lib/controls/select.mjs +7 -0
- package/esm2022/lib/controls/separator.mjs +4 -0
- package/esm2022/lib/controls/spacer.mjs +4 -0
- package/esm2022/lib/controls/tab.mjs +7 -0
- package/esm2022/lib/controls/table.mjs +13 -0
- package/esm2022/lib/controls/taglist.mjs +7 -0
- package/esm2022/lib/controls/text.mjs +4 -0
- package/esm2022/lib/controls/textarea.mjs +7 -0
- package/esm2022/lib/controls/textfield.mjs +18 -0
- package/esm2022/lib/controls/time.mjs +7 -0
- package/esm2022/lib/controls/toggle.mjs +7 -0
- package/esm2022/lib/dataSources/interfaces.mjs +2 -0
- package/esm2022/lib/dataSources/odata.mjs +131 -0
- package/esm2022/lib/dataSources/rest.mjs +48 -0
- package/esm2022/lib/directives/accordion.directive.mjs +52 -0
- package/esm2022/lib/directives/adorner.directive.mjs +130 -0
- package/esm2022/lib/directives/disable.directive.mjs +38 -0
- package/esm2022/lib/directives/display.directive.mjs +46 -0
- package/esm2022/lib/directives/dropdown.directive.mjs +233 -0
- package/esm2022/lib/directives/frame-security.directive.mjs +66 -0
- package/esm2022/lib/directives/grid.directive.mjs +68 -0
- package/esm2022/lib/directives/register.directive.mjs +86 -0
- package/esm2022/lib/directives/repeat.directive.mjs +38 -0
- package/esm2022/lib/directives/tab.directive.mjs +49 -0
- package/esm2022/lib/directives/updateblur.directive.mjs +32 -0
- package/esm2022/lib/dynamic-fields/dynamic-fields.component.mjs +493 -0
- package/esm2022/lib/dynamic-form/dynamic-form.component.mjs +395 -0
- package/esm2022/lib/locale/locale-it.mjs +13 -0
- package/esm2022/lib/services/data.service.mjs +29 -0
- package/esm2022/lib/services/event.service.mjs +19 -0
- package/esm2022/lib/services/feel.service.mjs +73 -0
- package/esm2022/lib/services/formatter.service.mjs +60 -0
- package/esm2022/lib/services/markdown.service.mjs +24 -0
- package/esm2022/lib/services/mime.service.mjs +32 -0
- package/esm2022/lib/services/programmability.service.mjs +221 -0
- package/esm2022/lib/services/proxy.service.mjs +131 -0
- package/esm2022/lib/services/register.service.mjs +60 -0
- package/esm2022/lib/services/sanitize.service.mjs +38 -0
- package/esm2022/lib/services/scope.service.mjs +46 -0
- package/esm2022/lib/services/toast.service.mjs +37 -0
- package/esm2022/lib/services/weak.service.mjs +60 -0
- package/esm2022/lib/utils/extractFiles.mjs +30 -0
- package/esm2022/lib/utils/gridCells.mjs +49 -0
- package/esm2022/lib/utils/groupByRow.mjs +30 -0
- package/esm2022/lib/utils/patchForm.mjs +55 -0
- package/esm2022/lib/utils/toFormData.mjs +11 -0
- package/esm2022/public-api.mjs +8 -0
- package/esm2022/wemake4u-form-player-se.mjs +5 -0
- package/fesm2022/wemake4u-form-player-se.mjs +3101 -0
- package/fesm2022/wemake4u-form-player-se.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/controls/accordion.d.ts +4 -0
- package/lib/controls/button.d.ts +4 -0
- package/lib/controls/checkbox.d.ts +4 -0
- package/lib/controls/checklist.d.ts +4 -0
- package/lib/controls/chipchecklist.d.ts +4 -0
- package/lib/controls/chipradio.d.ts +4 -0
- package/lib/controls/control.d.ts +24 -0
- package/lib/controls/date.d.ts +4 -0
- package/lib/controls/dynamiclist.d.ts +3 -0
- package/lib/controls/factory.d.ts +4 -0
- package/lib/controls/filepicker.d.ts +4 -0
- package/lib/controls/form.d.ts +3 -0
- package/lib/controls/group.d.ts +3 -0
- package/lib/controls/html.d.ts +3 -0
- package/lib/controls/iframe.d.ts +3 -0
- package/lib/controls/image.d.ts +3 -0
- package/lib/controls/number.d.ts +4 -0
- package/lib/controls/radio.d.ts +4 -0
- package/lib/controls/select.d.ts +4 -0
- package/lib/controls/separator.d.ts +3 -0
- package/lib/controls/spacer.d.ts +3 -0
- package/lib/controls/tab.d.ts +4 -0
- package/lib/controls/table.d.ts +6 -0
- package/lib/controls/taglist.d.ts +4 -0
- package/lib/controls/text.d.ts +3 -0
- package/lib/controls/textarea.d.ts +4 -0
- package/lib/controls/textfield.d.ts +6 -0
- package/lib/controls/time.d.ts +4 -0
- package/lib/controls/toggle.d.ts +4 -0
- package/lib/dataSources/interfaces.d.ts +8 -0
- package/lib/dataSources/odata.d.ts +16 -0
- package/lib/dataSources/rest.d.ts +16 -0
- package/lib/directives/accordion.directive.d.ts +11 -0
- package/lib/directives/adorner.directive.d.ts +22 -0
- package/lib/directives/disable.directive.d.ts +12 -0
- package/lib/directives/display.directive.d.ts +12 -0
- package/lib/directives/dropdown.directive.d.ts +26 -0
- package/lib/directives/frame-security.directive.d.ts +14 -0
- package/lib/directives/grid.directive.d.ts +17 -0
- package/lib/directives/register.directive.d.ts +24 -0
- package/lib/directives/repeat.directive.d.ts +12 -0
- package/lib/directives/tab.directive.d.ts +11 -0
- package/lib/directives/updateblur.directive.d.ts +10 -0
- package/lib/dynamic-fields/dynamic-fields.component.d.ts +84 -0
- package/lib/dynamic-form/dynamic-form.component.d.ts +76 -0
- package/lib/locale/locale-it.d.ts +12 -0
- package/lib/services/data.service.d.ts +15 -0
- package/lib/services/event.service.d.ts +15 -0
- package/lib/services/feel.service.d.ts +10 -0
- package/lib/services/formatter.service.d.ts +10 -0
- package/lib/services/markdown.service.d.ts +7 -0
- package/lib/services/mime.service.d.ts +8 -0
- package/lib/services/programmability.service.d.ts +39 -0
- package/lib/services/proxy.service.d.ts +31 -0
- package/lib/services/register.service.d.ts +18 -0
- package/lib/services/sanitize.service.d.ts +12 -0
- package/lib/services/scope.service.d.ts +13 -0
- package/lib/services/toast.service.d.ts +13 -0
- package/lib/services/weak.service.d.ts +10 -0
- package/lib/utils/extractFiles.d.ts +4 -0
- package/lib/utils/gridCells.d.ts +19 -0
- package/lib/utils/groupByRow.d.ts +38 -0
- package/lib/utils/patchForm.d.ts +8 -0
- package/lib/utils/toFormData.d.ts +1 -0
- package/package.json +42 -0
- package/public-api.d.ts +4 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FeelService {
|
|
3
|
+
constructor();
|
|
4
|
+
evalTemplate(template: string, context?: any): string;
|
|
5
|
+
evalExpression(expression: string, context?: Record<string, any>): any;
|
|
6
|
+
evalUnaryTest(expression: string, context?: Record<string, any>, input?: any): boolean;
|
|
7
|
+
getDependencies(expression: string, context?: Record<string, any>): (string | string[])[];
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeelService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FeelService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FormatterService {
|
|
3
|
+
constructor();
|
|
4
|
+
formatCurrency(value: any, symbol?: string | null): string;
|
|
5
|
+
formatDate(value: any): string;
|
|
6
|
+
formatInteger(value: any): string;
|
|
7
|
+
formatExpression(value: any, expression: string): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormatterService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormatterService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MimeService {
|
|
3
|
+
constructor();
|
|
4
|
+
getMimeTypes(extensions: string): string;
|
|
5
|
+
private getMimeType;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MimeService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MimeService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { FeelService } from '../services/feel.service';
|
|
4
|
+
import { ScopeService } from '../services/scope.service';
|
|
5
|
+
import { ProxyService } from '../services/proxy.service';
|
|
6
|
+
import { RegisterService } from '../services/register.service';
|
|
7
|
+
import { ToastService } from '../services/toast.service';
|
|
8
|
+
import { WeakService } from '../services/weak.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class ProgrammabilityService implements OnDestroy {
|
|
11
|
+
private feelService;
|
|
12
|
+
private weakService;
|
|
13
|
+
private proxyService;
|
|
14
|
+
private toastService;
|
|
15
|
+
private register;
|
|
16
|
+
private scope;
|
|
17
|
+
constructor(feelService: FeelService, weakService: WeakService, proxyService: ProxyService, toastService: ToastService, register: RegisterService, scope: ScopeService);
|
|
18
|
+
private destroy$;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
isExpression(text: string | null): boolean;
|
|
21
|
+
getExpression(text: string | null): string;
|
|
22
|
+
evaluateString(formGroup: FormGroup, value: string | null): string;
|
|
23
|
+
evaluateBoolean(formGroup: FormGroup, value: boolean | string | null): boolean | null;
|
|
24
|
+
evaluateNumber(formGroup: FormGroup, value: number | string | null): number | null;
|
|
25
|
+
evaluate(formGroup: FormGroup, value: string | null, cacheable?: boolean): any;
|
|
26
|
+
evaluateTemplate(formGroup: FormGroup, value: string | null): any;
|
|
27
|
+
evaluateUnary(formGroup: FormGroup, value: string | null, input: any): any;
|
|
28
|
+
private cacheable;
|
|
29
|
+
private evalUnaryTest;
|
|
30
|
+
private evalExpression;
|
|
31
|
+
private evalTemplate;
|
|
32
|
+
private createProxy;
|
|
33
|
+
private getParent;
|
|
34
|
+
private getContext;
|
|
35
|
+
private watchExpression;
|
|
36
|
+
private watchDependencies;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgrammabilityService, [null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProgrammabilityService>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ProxyService {
|
|
3
|
+
constructor();
|
|
4
|
+
getProxy(instance: any, options?: ProxyOptions | null): any;
|
|
5
|
+
private createProxy;
|
|
6
|
+
private createFunction;
|
|
7
|
+
private isProxy;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProxyService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProxyService>;
|
|
10
|
+
}
|
|
11
|
+
type ProxyQuery = (target: any, property: string | symbol, root: boolean) => boolean;
|
|
12
|
+
type ProxyGetter = (target: any, property: string | symbol, root: boolean) => any;
|
|
13
|
+
export declare class ProxyOptions {
|
|
14
|
+
private _canDelete;
|
|
15
|
+
private _canSet;
|
|
16
|
+
private _isCustom;
|
|
17
|
+
private _getCustom;
|
|
18
|
+
private _extend;
|
|
19
|
+
set extend(fn: Record<string, any>);
|
|
20
|
+
get extend(): Record<string, any>;
|
|
21
|
+
set canDelete(fn: ProxyQuery);
|
|
22
|
+
get canDelete(): ProxyQuery;
|
|
23
|
+
set canSet(fn: ProxyQuery);
|
|
24
|
+
get canSet(): ProxyQuery;
|
|
25
|
+
set isCustom(fn: ProxyQuery);
|
|
26
|
+
get isCustom(): ProxyQuery;
|
|
27
|
+
set getCustom(fn: ProxyGetter);
|
|
28
|
+
get getCustom(): ProxyGetter;
|
|
29
|
+
log: boolean;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Control } from '../controls/control';
|
|
2
|
+
import { ProxyService } from '../services/proxy.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RegisterService {
|
|
5
|
+
private proxyService;
|
|
6
|
+
private parent;
|
|
7
|
+
constructor(proxyService: ProxyService, parent: RegisterService | null);
|
|
8
|
+
private controls;
|
|
9
|
+
register(name: string, control: Control): void;
|
|
10
|
+
unregister(name: string): void;
|
|
11
|
+
unregisterAll(): void;
|
|
12
|
+
getControl(name: string): Control | undefined;
|
|
13
|
+
getControls(): Control[];
|
|
14
|
+
proxy(): any;
|
|
15
|
+
private resolve;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RegisterService, [null, { optional: true; skipSelf: true; }]>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RegisterService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DomSanitizer, SafeHtml, SafeResourceUrl } from '@angular/platform-browser';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SanitizeService {
|
|
4
|
+
private sanitizer;
|
|
5
|
+
constructor(sanitizer: DomSanitizer);
|
|
6
|
+
sanitizeHtml(html: string): string;
|
|
7
|
+
sanitizeSafeHtml(html: string): SafeHtml;
|
|
8
|
+
sanitizeSafeUrl(url: string): SafeResourceUrl;
|
|
9
|
+
private sanitizeOption;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SanitizeService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ProxyService } from '../services/proxy.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScopeService {
|
|
4
|
+
private proxyService;
|
|
5
|
+
private parent;
|
|
6
|
+
constructor(proxyService: ProxyService, parent: ScopeService | null);
|
|
7
|
+
private scope;
|
|
8
|
+
set(scope: Record<string, any>): void;
|
|
9
|
+
get(): any;
|
|
10
|
+
proxy(): any;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScopeService, [null, { optional: true; skipSelf: true; }]>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ScopeService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SirioToastService } from "ngx-sirio-lib";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ToastService {
|
|
4
|
+
private sirioToast;
|
|
5
|
+
constructor(sirioToast: SirioToastService);
|
|
6
|
+
notifyInfo(message: string, delay?: number): void;
|
|
7
|
+
notifySuccess(message: string, delay?: number): void;
|
|
8
|
+
notifyWarning(message: string, delay?: number): void;
|
|
9
|
+
notifyError(message: string, delay?: number): void;
|
|
10
|
+
private notify;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class WeakService {
|
|
3
|
+
constructor();
|
|
4
|
+
private cache;
|
|
5
|
+
exists(source: object, key: string): boolean;
|
|
6
|
+
call<T>(source: object, key: string, func: () => T, reusable?: ((value: T) => boolean) | null, store?: ((value: T) => any) | null): T;
|
|
7
|
+
invalidate(source: object, key: string): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WeakService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WeakService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ICellRendererAngularComp } from 'ag-grid-angular';
|
|
2
|
+
import { ICellRendererParams } from 'ag-grid-community';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ObjectURLRendererComponent implements ICellRendererAngularComp {
|
|
5
|
+
params: ICellRendererParams;
|
|
6
|
+
agInit(params: ICellRendererParams): void;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
|
+
refresh(): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectURLRendererComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectURLRendererComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
12
|
+
export declare class DeleteRowCellRenderer implements ICellRendererAngularComp {
|
|
13
|
+
params: any;
|
|
14
|
+
agInit(params: any): void;
|
|
15
|
+
onClick(event: Event): void;
|
|
16
|
+
refresh(): boolean;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DeleteRowCellRenderer, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DeleteRowCellRenderer, "ng-component", never, {}, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
interface Form {
|
|
2
|
+
id: string;
|
|
3
|
+
type: string;
|
|
4
|
+
name: string;
|
|
5
|
+
title: string;
|
|
6
|
+
path: string | null;
|
|
7
|
+
components: Component[];
|
|
8
|
+
}
|
|
9
|
+
interface Component {
|
|
10
|
+
id: string;
|
|
11
|
+
layout: {
|
|
12
|
+
columns: number | null;
|
|
13
|
+
row: string;
|
|
14
|
+
};
|
|
15
|
+
components?: Component[];
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}
|
|
18
|
+
interface RowComponent {
|
|
19
|
+
id: string;
|
|
20
|
+
layout: {
|
|
21
|
+
columns: number | null;
|
|
22
|
+
row: string;
|
|
23
|
+
};
|
|
24
|
+
rows?: RowGroup[];
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}
|
|
27
|
+
interface RowGroup {
|
|
28
|
+
row: string;
|
|
29
|
+
components: RowComponent[];
|
|
30
|
+
}
|
|
31
|
+
interface GroupedForm {
|
|
32
|
+
id: string;
|
|
33
|
+
title: string;
|
|
34
|
+
rows: RowGroup[];
|
|
35
|
+
[key: string]: any;
|
|
36
|
+
}
|
|
37
|
+
export declare function groupByRow(forms: Form[]): GroupedForm[];
|
|
38
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function toFormData(data: any): FormData;
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wemake4u/form-player-se",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/cdk": "^18.2.0",
|
|
6
|
+
"@angular/common": "^18.2.0",
|
|
7
|
+
"@angular/core": "^18.2.0",
|
|
8
|
+
"@angular/material": "18.2.0",
|
|
9
|
+
"rxjs": "~7.8.0",
|
|
10
|
+
"bootstrap": "5.3.3",
|
|
11
|
+
"ag-grid-angular": "^33.0.4",
|
|
12
|
+
"@ag-grid-community/locale": "^33.1.0",
|
|
13
|
+
"ngx-sirio-lib": "^1.2.6-A16",
|
|
14
|
+
"util": "^0.12.5"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"tslib": "^2.3.0",
|
|
18
|
+
"@types/mime-db": "1.43.5",
|
|
19
|
+
"@types/sanitize-html": "2.13.0",
|
|
20
|
+
"@types/vanillajs-datepicker": "^1.3.4",
|
|
21
|
+
"feelers": "^1.4.0",
|
|
22
|
+
"feelin": "3.1.2",
|
|
23
|
+
"marked": "15.0.7",
|
|
24
|
+
"mime-db": "1.53.0",
|
|
25
|
+
"sanitize-html": "^2.13.0",
|
|
26
|
+
"vanillajs-datepicker": "^1.3.4"
|
|
27
|
+
},
|
|
28
|
+
"sideEffects": false,
|
|
29
|
+
"module": "fesm2022/wemake4u-form-player-se.mjs",
|
|
30
|
+
"typings": "index.d.ts",
|
|
31
|
+
"exports": {
|
|
32
|
+
"./package.json": {
|
|
33
|
+
"default": "./package.json"
|
|
34
|
+
},
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./index.d.ts",
|
|
37
|
+
"esm2022": "./esm2022/wemake4u-form-player-se.mjs",
|
|
38
|
+
"esm": "./esm2022/wemake4u-form-player-se.mjs",
|
|
39
|
+
"default": "./fesm2022/wemake4u-form-player-se.mjs"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
package/public-api.d.ts
ADDED