@apia/execution 4.0.26 → 4.0.27
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/dist/index.d.ts +46 -132
- package/dist/index.js +480 -844
- package/dist/index.js.map +1 -1
- package/package.json +6 -5
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,8 @@ import { IStringifyOptions } from 'qs';
|
|
|
3
3
|
import { TableController, Row, Cell, CellState } from '@apia/table2-controller';
|
|
4
4
|
import { DeepReadonly, EventEmitter as EventEmitter$1, TApiaLoad, TApiaFunction, TApiaLoadForm, Mutex } from '@apia/util';
|
|
5
5
|
import { MobXTree } from '@apia/tree2-controller';
|
|
6
|
-
import
|
|
6
|
+
import * as _apia_scheduler_controller from '@apia/scheduler-controller';
|
|
7
|
+
import { TScheduleResult, Scheduler } from '@apia/scheduler-controller';
|
|
7
8
|
|
|
8
9
|
type TApiaButtonDefinition = TApiaFieldBaseDefinition<TApiaButtonProperties> & {
|
|
9
10
|
fieldType: 'button';
|
|
@@ -374,6 +375,12 @@ type TApiaTreeProperties = TApiaFieldCommonProperties & TApiaFieldWithAttributeP
|
|
|
374
375
|
autoFocus?: string;
|
|
375
376
|
};
|
|
376
377
|
|
|
378
|
+
type TParseXmlBehavior = {
|
|
379
|
+
avoidTrimXml?: boolean;
|
|
380
|
+
avoidNormalize?: boolean;
|
|
381
|
+
};
|
|
382
|
+
declare const parseXml: <T = Record<string, unknown>>(xml: XMLDocument | string, behaveConfig?: TParseXmlBehavior) => T;
|
|
383
|
+
|
|
377
384
|
interface TApiaMessage {
|
|
378
385
|
label?: string;
|
|
379
386
|
title: string;
|
|
@@ -399,9 +406,10 @@ interface IApiaApiRequestConfig {
|
|
|
399
406
|
axiosConfig?: AxiosRequestConfig;
|
|
400
407
|
stringifyOptions?: IStringifyOptions;
|
|
401
408
|
}
|
|
402
|
-
interface IApiaApiPostConfig<DataType> extends IApiaApiRequestConfig {
|
|
409
|
+
interface IApiaApiPostConfig<DataType> extends IApiaApiRequestConfig, TParseXmlBehavior {
|
|
403
410
|
postData?: DataType;
|
|
404
411
|
postDataTreatment?: 'stringify';
|
|
412
|
+
allowAfterFinish?: boolean;
|
|
405
413
|
}
|
|
406
414
|
|
|
407
415
|
type TFormEventName = 'onLoad' | 'onSubmit' | 'onReload' | 'onBeforePrint' | 'onAfterPrint';
|
|
@@ -471,6 +479,7 @@ type TCustomComponentDefinition = {
|
|
|
471
479
|
label: string;
|
|
472
480
|
properties: ComponentProperties;
|
|
473
481
|
event: ComponentEvent[];
|
|
482
|
+
error_while_processing?: string;
|
|
474
483
|
state: {
|
|
475
484
|
state: TCusCmpStateRequest;
|
|
476
485
|
};
|
|
@@ -622,6 +631,7 @@ type TCustomComponentState = {
|
|
|
622
631
|
attributes: Record<string, any[]>;
|
|
623
632
|
properties: Record<string, any>;
|
|
624
633
|
additional: any;
|
|
634
|
+
component: any;
|
|
625
635
|
};
|
|
626
636
|
declare class CustomComponent {
|
|
627
637
|
#private;
|
|
@@ -662,6 +672,7 @@ declare class CustomComponent {
|
|
|
662
672
|
} & {
|
|
663
673
|
success: boolean;
|
|
664
674
|
}) | undefined>;
|
|
675
|
+
setState<K extends keyof TCustomComponentState>(prop: K, value: TCustomComponentState[K]): void;
|
|
665
676
|
}
|
|
666
677
|
|
|
667
678
|
declare class Form extends WithProperties<TApiaFormProperties> {
|
|
@@ -721,10 +732,10 @@ declare class Form extends WithProperties<TApiaFormProperties> {
|
|
|
721
732
|
private cucCmpByAttId;
|
|
722
733
|
private cucCmpByFldId;
|
|
723
734
|
private cucCmpByAttName;
|
|
735
|
+
private mustRenderFields;
|
|
724
736
|
getCustomComponentByFldId(fldId: number): CustomComponent | undefined;
|
|
725
737
|
getCustomComponentByAttId(attId: number): CustomComponent | undefined;
|
|
726
738
|
getCustomComponentByAttName(attName: string): CustomComponent | undefined;
|
|
727
|
-
private mustRenderFields;
|
|
728
739
|
addFieldToRender(fldId: string, fldIndex?: number): void;
|
|
729
740
|
markFieldAsRendered(fldId: string, fldIndex?: number): void;
|
|
730
741
|
init(): Promise<void>;
|
|
@@ -821,9 +832,11 @@ declare class Notifications {
|
|
|
821
832
|
closeTab(): void;
|
|
822
833
|
getAll(): Notification<NotificationDefinition>[];
|
|
823
834
|
getById(id: string | number): Notification<NotificationDefinition> | undefined;
|
|
835
|
+
kill(): void;
|
|
824
836
|
remove(notification: string | number | Notification): void;
|
|
825
|
-
on: <K extends "closeTab" | "notification">(event: K, cb: Callback<{
|
|
837
|
+
on: <K extends "closeTab" | "kill" | "notification">(event: K, cb: Callback<{
|
|
826
838
|
closeTab: null;
|
|
839
|
+
kill: null;
|
|
827
840
|
notification: Notification;
|
|
828
841
|
}, K>) => UnSubscriber;
|
|
829
842
|
}
|
|
@@ -1678,6 +1691,14 @@ declare abstract class FlowModal<T extends {
|
|
|
1678
1691
|
abstract confirm(result: T): Promise<Status | FlowModal<any>>;
|
|
1679
1692
|
}
|
|
1680
1693
|
|
|
1694
|
+
declare enum ExecutionState {
|
|
1695
|
+
RUNNING = 0,
|
|
1696
|
+
LOADING = 1,
|
|
1697
|
+
FINISHED = 2,
|
|
1698
|
+
RENDERING = 3,
|
|
1699
|
+
CONFIRMING = 4,
|
|
1700
|
+
FINISHED_WITH_ERROR = 5
|
|
1701
|
+
}
|
|
1681
1702
|
type TOnClose = 'clearEvalPath' | 'confirmOkOnClose' | 'confirmOkOnCloseSplash' | 'confirmOkOnSaveSplash' | 'releaseOkOnClose' | null;
|
|
1682
1703
|
type TErrMessage = {
|
|
1683
1704
|
message: {
|
|
@@ -1829,13 +1850,6 @@ declare class ShowSign extends FlowModal<{
|
|
|
1829
1850
|
}) => Promise<Status>);
|
|
1830
1851
|
}
|
|
1831
1852
|
|
|
1832
|
-
declare enum ExecutionState {
|
|
1833
|
-
RUNNING = 0,
|
|
1834
|
-
LOADING = 1,
|
|
1835
|
-
FINISHED = 2,
|
|
1836
|
-
RENDERING = 3,
|
|
1837
|
-
CONFIRMING = 4
|
|
1838
|
-
}
|
|
1839
1853
|
type TExecutionConfig = {
|
|
1840
1854
|
canConfirm: boolean;
|
|
1841
1855
|
canGoBack: boolean;
|
|
@@ -1929,6 +1943,10 @@ declare class Execution extends EventEmitter$1<{
|
|
|
1929
1943
|
stepNumber: number;
|
|
1930
1944
|
status: "completed" | "pending" | "current";
|
|
1931
1945
|
} | undefined;
|
|
1946
|
+
/**
|
|
1947
|
+
* Ends the current session
|
|
1948
|
+
*/
|
|
1949
|
+
kill(): void;
|
|
1932
1950
|
viewDocs(): Promise<(Record<string, unknown> & ResponseSysMessages) | undefined>;
|
|
1933
1951
|
setStepTitle(stepNumber: number, stepTitle: string): void;
|
|
1934
1952
|
validate(): Promise<true | Field>;
|
|
@@ -1950,7 +1968,7 @@ declare function isXmlResponse(response: AxiosResponse<unknown>): RegExpMatchArr
|
|
|
1950
1968
|
declare function isHtmlResponse(response: AxiosResponse<unknown>): RegExpMatchArray | null;
|
|
1951
1969
|
declare class InvalidSessionException extends Error {
|
|
1952
1970
|
}
|
|
1953
|
-
declare const parseSuccessfulResponse: <LoadType extends Record<string, unknown
|
|
1971
|
+
declare const parseSuccessfulResponse: <LoadType extends Record<string, unknown>, DataType = unknown>(execution: Execution, response: AxiosResponse<string>, behaveConfig?: IApiaApiPostConfig<DataType>) => Promise<(ResponseSysMessages & LoadType & {
|
|
1954
1972
|
onClose?: string;
|
|
1955
1973
|
code?: unknown;
|
|
1956
1974
|
load?: LoadType | undefined;
|
|
@@ -2166,7 +2184,7 @@ interface IButton {
|
|
|
2166
2184
|
action: Promise<() => unknown> | string;
|
|
2167
2185
|
id: TActionButtons;
|
|
2168
2186
|
}
|
|
2169
|
-
type TActionButtons = '
|
|
2187
|
+
type TActionButtons = 'sbtEjeDoc' | 'btnClose' | 'lblExeDelegar' | 'btnCon' | 'btnSig' | 'btnStaPri' | 'btnAnt' | 'btnEjeLib' | 'btnGua' | 'SIGN' | 'lblShareMsg';
|
|
2170
2188
|
type TApiaFieldType = 'area' | 'button' | 'captcha' | 'check' | 'editor' | 'file' | 'grid' | 'hidden' | 'href' | 'image' | 'input' | 'label' | 'multiple' | 'password' | 'radio' | 'select' | 'title' | 'tree' | 'form';
|
|
2171
2189
|
type PossibleValue = {
|
|
2172
2190
|
value: string | number;
|
|
@@ -2221,7 +2239,7 @@ declare class ApiaFunctions implements IApiaFunctions {
|
|
|
2221
2239
|
getAllForms(): IApiaForm[];
|
|
2222
2240
|
getAllFormsByType(type: 'P' | 'E'): IApiaForm[];
|
|
2223
2241
|
getAttField(attType: 'P' | 'E', attId: string): IApiaField | IApiaField[] | undefined;
|
|
2224
|
-
getButtonAction(id: number | string):
|
|
2242
|
+
getButtonAction(id: number | string): "sbtEjeDoc" | "btnClose" | "lblExeDelegar" | "btnCon" | "btnSig" | "btnStaPri" | "btnAnt" | "btnEjeLib" | "btnGua" | "lblShareMsg";
|
|
2225
2243
|
getCurrentLanguageCode(): string | null;
|
|
2226
2244
|
getCurrentProcessName(): string | null;
|
|
2227
2245
|
getCurrentStep(): number | null;
|
|
@@ -2314,10 +2332,6 @@ declare class ButtonField extends ApiaField<TTextFieldProperties> implements IBu
|
|
|
2314
2332
|
setValue(value: string): void;
|
|
2315
2333
|
}
|
|
2316
2334
|
|
|
2317
|
-
type TEditorField = IApiaField;
|
|
2318
|
-
declare class EditorField extends ApiaField implements TEditorField {
|
|
2319
|
-
}
|
|
2320
|
-
|
|
2321
2335
|
declare class ApiaAttribute {
|
|
2322
2336
|
#private;
|
|
2323
2337
|
constructor(attribute: Attribute);
|
|
@@ -2338,6 +2352,10 @@ declare class ApiaFieldWithAttribute<T = string | boolean> extends ApiaField {
|
|
|
2338
2352
|
getProperty<K extends keyof TApiaFieldWithAttributeProperties>(name: K): TApiaFieldWithAttributeProperties[K];
|
|
2339
2353
|
}
|
|
2340
2354
|
|
|
2355
|
+
type TEditorField = IApiaField;
|
|
2356
|
+
declare class EditorField extends ApiaFieldWithAttribute implements TEditorField {
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2341
2359
|
type TOptionsMap$2 = Map<string, PossibleValue>;
|
|
2342
2360
|
type TOptionsAsArray = PossibleValue[];
|
|
2343
2361
|
declare class SelectField extends ApiaFieldWithAttribute<string | number | (string | number)[]> {
|
|
@@ -2846,6 +2864,7 @@ type ModalInputValue = {
|
|
|
2846
2864
|
storeValue?: string;
|
|
2847
2865
|
};
|
|
2848
2866
|
declare class ModalInput extends FieldWithAttribute<TApiaInputProperties, ModalInputValue> {
|
|
2867
|
+
isLoading: boolean;
|
|
2849
2868
|
constructor({ value, ...definition }: TApiaModalInputDefinition);
|
|
2850
2869
|
fireEvent(eventName: InputEvents): Promise<boolean>;
|
|
2851
2870
|
protected hasValue(): boolean;
|
|
@@ -2911,100 +2930,11 @@ declare class Tree extends FieldWithAttribute<TApiaTreeProperties, TTreeValue[],
|
|
|
2911
2930
|
}> | undefined): Promise<boolean>;
|
|
2912
2931
|
}
|
|
2913
2932
|
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
initialProps: IScheduleInitialProps;
|
|
2917
|
-
url?: string;
|
|
2918
|
-
selectedCell?: string | null;
|
|
2919
|
-
focusStage?: string;
|
|
2920
|
-
stageList?: string[];
|
|
2921
|
-
selectedDay?: ISelectedDay;
|
|
2922
|
-
stageData: IStage[];
|
|
2923
|
-
isStageMounted: Record<string, boolean>;
|
|
2924
|
-
validation: FieldValidationState;
|
|
2925
|
-
isLoading?: 'NotLoading' | 'Today' | 'LastWeek' | 'DateInput' | 'NextWeek' | 'DeleteWeek';
|
|
2926
|
-
};
|
|
2927
|
-
type TSelectedDateResponse = {
|
|
2928
|
-
success: boolean;
|
|
2929
|
-
};
|
|
2930
|
-
type TTskSchHour = {
|
|
2931
|
-
hour: string;
|
|
2932
|
-
disabled: boolean;
|
|
2933
|
-
value: string;
|
|
2934
|
-
};
|
|
2935
|
-
type TTskSchDay = {
|
|
2936
|
-
type: string;
|
|
2937
|
-
day: string;
|
|
2938
|
-
tskSchHour?: TTskSchHour | TTskSchHour[];
|
|
2939
|
-
isDisabled?: boolean;
|
|
2940
|
-
};
|
|
2941
|
-
type TScheduleResult = {
|
|
2942
|
-
calId: string;
|
|
2943
|
-
mode: string;
|
|
2944
|
-
overassign: string;
|
|
2945
|
-
weekNotConfigured: boolean;
|
|
2946
|
-
frec: string;
|
|
2947
|
-
tskSchId: string;
|
|
2948
|
-
mondayWeek: string;
|
|
2949
|
-
success: boolean;
|
|
2950
|
-
tskSchDay: TTskSchDay | TTskSchDay[];
|
|
2951
|
-
};
|
|
2952
|
-
interface IScheduleInitialProps {
|
|
2953
|
-
schId: string;
|
|
2954
|
-
proId: string;
|
|
2955
|
-
proVerId: string;
|
|
2956
|
-
tskId: string;
|
|
2957
|
-
showDisponibility: string;
|
|
2958
|
-
showAttributes: string;
|
|
2959
|
-
}
|
|
2960
|
-
interface ILabelSelectedDay {
|
|
2961
|
-
hour: string;
|
|
2962
|
-
day?: string | undefined;
|
|
2963
|
-
}
|
|
2964
|
-
interface ISelectedDay {
|
|
2965
|
-
hour?: string;
|
|
2966
|
-
day?: string;
|
|
2967
|
-
mondayWeek?: string;
|
|
2968
|
-
dayNumber?: number;
|
|
2969
|
-
morningOrAfternoonSelected?: number | null;
|
|
2970
|
-
}
|
|
2971
|
-
interface IStage {
|
|
2972
|
-
name: string;
|
|
2973
|
-
buttons?: IStageButton[];
|
|
2974
|
-
}
|
|
2975
|
-
interface IStageButton extends ButtonProps {
|
|
2976
|
-
label: string;
|
|
2977
|
-
title: string;
|
|
2978
|
-
action: () => unknown;
|
|
2979
|
-
isDisabled?: boolean;
|
|
2980
|
-
value?: string;
|
|
2981
|
-
isSelectedSelector: () => boolean;
|
|
2982
|
-
}
|
|
2983
|
-
type TSchInfoResult = {
|
|
2984
|
-
pro_instances: {
|
|
2985
|
-
pro_instance: TProcesses;
|
|
2986
|
-
};
|
|
2987
|
-
};
|
|
2988
|
-
type TProcesses = {
|
|
2989
|
-
id: number;
|
|
2990
|
-
attributes: {
|
|
2991
|
-
attribute: {
|
|
2992
|
-
title: string;
|
|
2993
|
-
value: string;
|
|
2994
|
-
}[];
|
|
2995
|
-
};
|
|
2996
|
-
}[];
|
|
2997
|
-
|
|
2998
|
-
declare function getCurrentDate(): string;
|
|
2999
|
-
interface ISchedulerStore {
|
|
3000
|
-
}
|
|
3001
|
-
declare class Scheduler extends Field<TApiaSchedulerProperties> {
|
|
3002
|
-
state: TSchedulerState;
|
|
3003
|
-
private inited;
|
|
3004
|
-
protected readonly tableController: TableController;
|
|
2933
|
+
declare class SchedulerField extends Field<TApiaSchedulerProperties> {
|
|
2934
|
+
private _schedController;
|
|
3005
2935
|
constructor(definition: TApiaFieldBaseDefinition<TApiaSchedulerProperties>);
|
|
3006
|
-
|
|
3007
|
-
get
|
|
2936
|
+
deleteDate(): Promise<boolean>;
|
|
2937
|
+
get parsedInitialProperties(): {
|
|
3008
2938
|
schId: string;
|
|
3009
2939
|
proId: string;
|
|
3010
2940
|
proVerId: string;
|
|
@@ -3013,24 +2943,10 @@ declare class Scheduler extends Field<TApiaSchedulerProperties> {
|
|
|
3013
2943
|
showAttributes: string;
|
|
3014
2944
|
};
|
|
3015
2945
|
init(form: Form): Promise<void>;
|
|
3016
|
-
loadWeek(weekDay
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
setDay(day: ISelectedDay): void;
|
|
3021
|
-
setStage({ index, newStage }: {
|
|
3022
|
-
index: number;
|
|
3023
|
-
newStage: IStage;
|
|
3024
|
-
}): void;
|
|
3025
|
-
syncStage(day: TTskSchDay, hour: number): void;
|
|
3026
|
-
makeDaysStage(data?: TScheduleResult): void;
|
|
3027
|
-
private makeMorningOrAfternoonStage;
|
|
3028
|
-
private makeHoursStage;
|
|
3029
|
-
deleteDate(): Promise<void>;
|
|
3030
|
-
goNextWeek(): Promise<void>;
|
|
3031
|
-
goPreviousWeek(): Promise<void>;
|
|
3032
|
-
parsedDateLabel: () => string;
|
|
3033
|
-
getSchedulerColumns(data: TScheduleResult | null): CellState[];
|
|
2946
|
+
loadWeek(weekDay: string, schId: string, proId: string, proVerId: string, tskId: string): Promise<(TScheduleResult & ResponseSysMessages) | null>;
|
|
2947
|
+
loadInfo(schId: string, weekDay: string, dayNumber: number, hour: string): Promise<_apia_scheduler_controller.TProcesses>;
|
|
2948
|
+
markDay(weekDay: string, hour: string, dayNumber: number): Promise<void>;
|
|
2949
|
+
get schedController(): Scheduler;
|
|
3034
2950
|
}
|
|
3035
2951
|
|
|
3036
2952
|
declare const IProperty: {
|
|
@@ -3335,9 +3251,7 @@ declare function getLabel(execution: Execution, label: string, replacers?: Parti
|
|
|
3335
3251
|
tooltip: string;
|
|
3336
3252
|
};
|
|
3337
3253
|
|
|
3338
|
-
declare const parseXml: <T = Record<string, unknown>>(xml: XMLDocument | string) => T;
|
|
3339
|
-
|
|
3340
3254
|
declare function parseFakeJSON<T extends Record<string, unknown>>(str: string): T;
|
|
3341
3255
|
|
|
3342
|
-
export { ActionsController, AdditionalCell, ApiaAttribute, ApiaField, ApiaFieldWithAttribute, ApiaForm, ApiaFunctions, BouncingEmitter, Button, ButtonField, Captcha, CaptchaField, CheckField, Checkbox, type ComponentEvent, CustomComponent, GridField as DataGridField, Editor, EditorField, EventEmitter, Execution, ExecutionState, Field, FieldWithAttribute, type FieldWithAttributeState, type FieldsMapping, File$1 as File, FileUploaderField, FlowModal, Form, FormsUploader, Grid, GridCell, GridField, GridPaginated, HeaderCell, Hidden, HiddenField, type IApiaField, type IApiaForm, type IApiaFunctions, type IButton, type IIProperty, type
|
|
3256
|
+
export { ActionsController, AdditionalCell, ApiaAttribute, ApiaField, ApiaFieldWithAttribute, ApiaForm, ApiaFunctions, BouncingEmitter, Button, ButtonField, Captcha, CaptchaField, CheckField, Checkbox, type ComponentEvent, CustomComponent, GridField as DataGridField, Editor, EditorField, EventEmitter, Execution, ExecutionState, Field, FieldWithAttribute, type FieldWithAttributeState, type FieldsMapping, File$1 as File, FileUploaderField, FlowModal, Form, FormsUploader, Grid, GridCell, GridField, GridPaginated, HeaderCell, Hidden, HiddenField, type IApiaField, type IApiaForm, type IApiaFunctions, type IButton, type IIProperty, type IPoolsPermissions, IProperty, type ISignatureData, type IUsersPermissions, Image, ImageField, Input, InputField, InvalidSessionException, Label, Link, LinkField, MessageNotification, ModalInput, ModalInputField, Multiple, MultipleField, Notifications, Password, PasswordField, type PossibleValue, Radio, RadioField, type RadioPossibleValue, SchedulerField, Select, SelectField, type SelectPossibleValue, ShowConfirmMessage, ShowPathSelection, ShowPoolSelection, ShowSign, ShowSignSelection, StatefulEmitter, type Status, StatusNotification, type TActionButtons, type TAjaxUploadFileStatus, type TAjaxUploadStart, type TApiaButtonProperties, type TApiaCaptchaProperties, type TApiaCheckboxProperties, type TApiaDocumentDefinition, type TApiaEditorProperties, type TApiaFieldBaseDefinition, type TApiaFieldCommonProperties, type TApiaFieldDefinition, type TApiaFieldPossibleValue, type TApiaFieldSizableFieldProperties, type TApiaFieldType, type TApiaFieldValueType, type TApiaFieldWithAttributeBaseProps, type TApiaFieldWithAttributeProperties, type TApiaFileProperties, type TApiaForm, type TApiaFormProperties, type TApiaGridProperties, type TApiaGroupableFieldProperties, type TApiaHiddenProperties, type TApiaImageProperties, type TApiaInputProperties, type TApiaLabelProperties, type TApiaLinkProperties, type TApiaMultipleProperties, type TApiaPasswordProperties, type TApiaRadioProperties, type TApiaSchedulerProperties, type TApiaSelectProperties, type TApiaTextareaProperties, type TApiaTitleProperties, type TApiaTranslatableFieldProperties, type TApiaTreePossibleValue, type TApiaTreeProperties, type TApiaValuatedFieldProperties, type TCheckWizardResponse, type TConfirmDropModal, type TCusCmpStateRequest, type TCustomComponentDefaultResponse, type TCustomComponentDefinition, type TDocInfo, type TDocType, type TDocumentDownloadHistory, type TDocumentInformation, type TDocumentMetadata, type TDocumentPermission, type TDocumentVersion, type TExecutionConfig, type TFetchConfirmPathResponse, type TFieldEvent, type TFieldScriptEvent, type TFieldScriptEventParameters, type TFieldScriptEvents, type TFieldServerEvent, type TFieldServerEvents, type TFileUploaded, type TFormEventName, type TFormScriptEvent, type TFormScriptEventParameters, type TFormScriptEvents, type TFrmParent, type TItemTreeObj, type TModalConfig, type TObservation, type TObservations, type TOnUploadProgress, type TPathType, type TProcessDroppedFiles, type TRequireOnlyOne, type TSaveDroppedFilesConf, type TSignaturesData, type TUploadModalOpener, type TUploaderFileInfo, type TUploaderLoadCurrentFunction, type TUploaderLoadCurrentFunctionMessages, AreaField as TextAreaField, TextField, Textarea, Title, TranslatableField, Translation, Tree, TreeField, UploaderApi, UploaderModalController, type UploaderModalState, type UploaderState, createNewField, deepEqual, get, getLabel, isHtmlResponse, isJsonResponse, isOneClickUploadEnabled, isXmlResponse, makeApiaUrl, parseFakeJSON, parseFileDefinition, parseSuccessfulResponse, parseXml, post, returnExactlyTheSame, shallowEqual };
|
|
3343
3257
|
//# sourceMappingURL=index.d.ts.map
|