@apia/execution 4.0.30 → 4.0.31

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 CHANGED
@@ -385,6 +385,7 @@ interface TApiaMessage {
385
385
  label?: string;
386
386
  title: string;
387
387
  text: string;
388
+ type?: number;
388
389
  }
389
390
  type ResponseSysMessages = {
390
391
  sysMessages?: {
@@ -515,6 +516,7 @@ type SetValueOptions = Partial<{
515
516
  format: 'd/m/Y' | 'apia';
516
517
  markAsDirty: boolean;
517
518
  synchronize: boolean;
519
+ force: boolean;
518
520
  }>;
519
521
  type FireEventParameters = Record<string, unknown>;
520
522
  type FieldValidationState = {
@@ -597,6 +599,9 @@ declare class WithProperties<Props extends Record<string, any>> {
597
599
  setParentGrid(grid: Grid): this;
598
600
  }
599
601
 
602
+ type TFireEventOptions = {
603
+ force?: boolean;
604
+ };
600
605
  declare class Attribute {
601
606
  readonly id: string;
602
607
  readonly name: string;
@@ -609,10 +614,11 @@ declare abstract class FieldWithAttribute<FieldProps extends TApiaFieldWithAttri
609
614
  protected lastSynchronizationValue: ValueType | null;
610
615
  readonly attribute: Attribute;
611
616
  constructor({ attId, attName, attLabel, valueType, value, ...definition }: TApiaFieldWithAttributeBaseProps<FieldProps>);
612
- fireEvent(eventName: string): Promise<boolean>;
617
+ fireEvent(eventName: string, options?: TFireEventOptions): Promise<boolean>;
613
618
  protected getInitialValue({ value, }: TApiaFieldWithAttributeBaseProps<FieldProps>): Promise<ValueType>;
614
619
  getValidationState(): FieldValidationState;
615
620
  getValue(): ValueType;
621
+ protected canSetValue(newValue: ValueType): boolean;
616
622
  setValue(newValue: ValueType, options?: SetValueOptions): Promise<boolean>;
617
623
  protected getSynchronizePostConfiguration(value: ValueType): IApiaApiPostConfig<any>;
618
624
  protected getSynchronizeUrl(params?: Record<string, unknown>): string;
@@ -777,12 +783,6 @@ interface IApiaFunctions {
777
783
  getCurrentLanguageCode(): string | null;
778
784
  toJSNumber(value: string): number | string;
779
785
  toApiaNumber(value: number): number | string;
780
- disableActionButton(btnIdx: string): void;
781
- enableActionButton(btnIdx: string): void;
782
- disableOptionButton(btnIdx: string): void;
783
- enableOptionButton(btnIdx: string): void;
784
- hideOptionButton(btnIdx: string): void;
785
- showOptionButton(btnIdx: string): void;
786
786
  openTab(title: string, url: string): void;
787
787
  showMessage(text: string): void;
788
788
  showConfirm(text: string, title: string, callbackFn: (win: boolean) => unknown): void;
@@ -821,17 +821,6 @@ interface IApiaField<Props extends typeof FieldConstants = typeof FieldConstants
821
821
  */
822
822
  isInGrid(): boolean;
823
823
  }
824
- interface IButton {
825
- disabled: boolean;
826
- hidden: boolean;
827
- label: string;
828
- isLoading: boolean;
829
- title: string;
830
- variant?: string;
831
- action: Promise<() => unknown> | string;
832
- id: TActionButtons;
833
- }
834
- type TActionButtons = 'sbtEjeDoc' | 'btnClose' | 'lblExeDelegar' | 'btnCon' | 'btnSig' | 'btnStaPri' | 'btnAnt' | 'btnEjeLib' | 'btnGua' | 'SIGN' | 'lblShareMsg';
835
824
  type TApiaFieldType = 'area' | 'button' | 'captcha' | 'check' | 'editor' | 'file' | 'grid' | 'hidden' | 'href' | 'image' | 'input' | 'label' | 'multiple' | 'password' | 'radio' | 'select' | 'title' | 'tree' | 'form';
836
825
  type PossibleValue = {
837
826
  value: string | number;
@@ -839,35 +828,13 @@ type PossibleValue = {
839
828
  selected?: boolean;
840
829
  };
841
830
 
842
- declare class ButtonsAction {
843
- private button;
844
- constructor(button: IButton);
845
- private update;
846
- get action(): this;
847
- get disabled(): boolean;
848
- get props(): {
849
- disabled: boolean;
850
- hidden: boolean;
851
- loading: boolean;
852
- };
853
- get label(): string;
854
- get title(): string;
855
- get variant(): string;
856
- set title(title: string);
857
- set variant(variant: string);
858
- disable(): void;
859
- enable(): void;
860
- hide(): void;
861
- show(): void;
862
- }
863
-
864
831
  declare global {
865
832
  interface Window {
866
833
  lastModalReturn: string[];
867
834
  }
868
835
  }
869
836
  declare class ApiaFunctions implements IApiaFunctions {
870
- execution: Execution;
837
+ #private;
871
838
  constructor(execution: Execution);
872
839
  toJSNumber(_value: string): number | string;
873
840
  toApiaNumber(_value: number): number | string;
@@ -875,18 +842,14 @@ declare class ApiaFunctions implements IApiaFunctions {
875
842
  showMessage(_text: string): void;
876
843
  showConfirm(_text: string, _title: string, _callbackFn: (win: boolean) => unknown): void;
877
844
  getFormByType(frmName: string, frmType: TFrmParent): IApiaForm | null;
878
- actionButton(id: string | number): ButtonsAction | undefined;
879
845
  admEntity(entName: string, entNum?: number, parameters?: string, width?: number, height?: number): void;
880
846
  clearMessages(): void;
881
847
  clickActionButton(button: number): void;
882
- disableActionButton(id: string | number): void;
883
- disableOptionButton(id: string | number): void;
884
- enableActionButton(id: string | number): void;
885
- enableOptionButton(id: string | number): void;
848
+ disableActionButton(id: number): void;
849
+ enableActionButton(id: number): void;
886
850
  getAllForms(): IApiaForm[];
887
851
  getAllFormsByType(type: 'P' | 'E'): IApiaForm[];
888
852
  getAttField(attType: 'P' | 'E', attId: string): IApiaField | IApiaField[] | undefined;
889
- getButtonAction(id: number | string): "sbtEjeDoc" | "btnClose" | "lblExeDelegar" | "btnCon" | "btnSig" | "btnStaPri" | "btnAnt" | "btnEjeLib" | "btnGua" | "lblShareMsg";
890
853
  getCurrentLanguageCode(): string | null;
891
854
  getCurrentProcessName(): string | null;
892
855
  getCurrentStep(): number | null;
@@ -900,13 +863,13 @@ declare class ApiaFunctions implements IApiaFunctions {
900
863
  getModalValue(): string;
901
864
  getProcessForm(frmName: string): IApiaForm | null;
902
865
  getRootPath(): string | null;
903
- hideActionButton(id: string | number): void;
904
- hideOptionButton(id: string | number): void;
866
+ hideActionButton(id: number): void;
867
+ isActionButtonDisabled(id: number): boolean;
868
+ isActionButtonHidden(id: number): boolean;
905
869
  saveTask(): void;
906
870
  setLastModalReturn(value: string[]): void;
907
871
  setStepTitle(stepNumber: number, stepTitle: string): void;
908
- showActionButton(id: string | number): void;
909
- showOptionButton(id: string | number): void;
872
+ showActionButton(id: number): void;
910
873
  viewAdmEntity(entName: string, entNum?: number): void;
911
874
  }
912
875
 
@@ -922,11 +885,26 @@ declare class ActionsController {
922
885
  static PRINT: number;
923
886
  static VIEW_DOCS: number;
924
887
  static CLOSE: number;
888
+ static SEND_TO_DESK: number;
889
+ static BTN_CONFIRM: number;
890
+ static BTN_DELEGATE: number;
891
+ static BTN_NEXT: number;
892
+ static BTN_PERV: number;
893
+ static BTN_RELEASE: number;
894
+ static BTN_SAVE: number;
895
+ static BTN_SHARE: number;
896
+ static BTN_SIGN: number;
925
897
  private static _instance;
926
898
  static get instance(): ActionsController;
899
+ private constructor();
927
900
  private buttons;
928
- addButton(button: IButton): void;
929
- getButton(id: TActionButtons): ButtonsAction | undefined;
901
+ private get;
902
+ disable(id: number): void;
903
+ enable(id: number): void;
904
+ hide(id: number): void;
905
+ isDisabled(id: number): boolean;
906
+ isHidden(id: number): boolean;
907
+ show(id: number): void;
930
908
  }
931
909
 
932
910
  declare class ApiaForm implements IApiaForm {
@@ -1063,6 +1041,8 @@ declare class ApiaForm implements IApiaForm {
1063
1041
  getFieldColumn(name: string): IApiaField[];
1064
1042
  getAllFields(): IApiaField[];
1065
1043
  clearForm(clearReadonlyFields: boolean, deleteGridsRows: boolean): void;
1044
+ hideModal(): void;
1045
+ showAsModal(): void;
1066
1046
  }
1067
1047
 
1068
1048
  declare abstract class ApiaField<Props extends typeof FieldConstants = typeof FieldConstants> implements IApiaField<Props> {
@@ -2166,7 +2146,7 @@ type TProcess = {
2166
2146
  * nombre.
2167
2147
  */
2168
2148
  declare function returnExactlyTheSame(defaultParameters: Record<string, unknown>): Record<string, unknown>;
2169
- declare function isOneClickUploadEnabled(oneClickUploadProp?: boolean): string | boolean;
2149
+ declare function isOneClickUploadEnabled(execution: Execution, oneClickUploadProp?: boolean): string | boolean;
2170
2150
  declare const parseFileDefinition: (execution: Execution, fileDefinition: TFileUploaded | TUploaderFileInfo, isSignRequired: boolean) => TUploaderFileInfo;
2171
2151
  type TOnUploadProgress = (progress: number) => void;
2172
2152
  declare class UploaderApi extends EventEmitter$1<{
@@ -2362,6 +2342,7 @@ declare class UploaderModalController {
2362
2342
  clearFile(name: string): void;
2363
2343
  clearFiles(): void;
2364
2344
  clearState(): void;
2345
+ clearPartialState(): void;
2365
2346
  onCloseModal(): void;
2366
2347
  confirm(): Promise<boolean>;
2367
2348
  deleteMetadata(indices: number[]): void;
@@ -2383,6 +2364,7 @@ type UploaderModalState = {
2383
2364
  };
2384
2365
  fromDirectoryFile: TApiaDocumentDefinition | null;
2385
2366
  docFolder?: number;
2367
+ docPath?: string;
2386
2368
  docExpDate?: string;
2387
2369
  description: string;
2388
2370
  isReadonly?: boolean;
@@ -2414,7 +2396,7 @@ interface IPoolsPermissions {
2414
2396
  poolName: string;
2415
2397
  canUpdate: boolean;
2416
2398
  }
2417
- type TUploaderFileInfo = Omit<TFileUploaded, 'locked' | 'lock' | 'userLocking' | 'lockedBy'> & {
2399
+ type TUploaderFileInfo = Omit<TFileUploaded, 'locked' | 'userLocking'> & {
2418
2400
  canEdit?: boolean;
2419
2401
  canRead?: boolean;
2420
2402
  isLocked: boolean;
@@ -2728,7 +2710,7 @@ declare class FormsUploader extends UploaderApi {
2728
2710
  getProcessDroppedFilesPostdata: ({ useDocTypePermitted, docTypePermittedObjId, docTypePermittedObjType, ...parameters }: Record<string, unknown>) => Record<string, unknown>;
2729
2711
  getReloadMetadataParameters: (defaultParameters: Record<string, unknown>) => Record<string, unknown>;
2730
2712
  getSaveDroppedFilesParameters: (defaultParameters: Record<string, unknown>) => Record<string, unknown>;
2731
- downloadDocument(fileId: string): Promise<void>;
2713
+ downloadDocument(fileId: string, version?: string): Promise<void>;
2732
2714
  loadCurrentDocuments(): Promise<void>;
2733
2715
  parseFileDefinition: (file: TFileUploaded) => TUploaderFileInfo;
2734
2716
  saveDroppedFiles(unprocessedFiles: File[], conf?: TSaveDroppedFilesConf | undefined): Promise<boolean>;
@@ -3099,15 +3081,17 @@ type TExecutionEnvironment = {
3099
3081
  };
3100
3082
  };
3101
3083
  declare class Execution extends EventEmitter$1<{
3102
- confirm: null;
3103
- next: null;
3084
+ flow: 'previous' | 'confirm' | 'next' | 'save' | 'release' | 'share' | 'viewDocs' | 'print' | 'delegate';
3104
3085
  sendToDesktop: null;
3086
+ hideFormModal: Form;
3087
+ showFormAsModal: Form;
3105
3088
  }> {
3106
3089
  environment: TExecutionEnvironment;
3107
3090
  fieldsMapping: FieldsMapping;
3108
3091
  private entity;
3109
3092
  private process;
3110
3093
  private observations;
3094
+ private executedOnLoadEvents;
3111
3095
  executionConfig: TExecutionConfig | null;
3112
3096
  private _steps;
3113
3097
  private _currentStep;
@@ -3125,7 +3109,7 @@ declare class Execution extends EventEmitter$1<{
3125
3109
  };
3126
3110
  state: {
3127
3111
  executionState: ExecutionState;
3128
- locked: boolean;
3112
+ locked: number;
3129
3113
  hasChangedAnything: boolean;
3130
3114
  };
3131
3115
  getAllForms(): Form[];
@@ -3145,13 +3129,25 @@ declare class Execution extends EventEmitter$1<{
3145
3129
  getObservations(): Observations;
3146
3130
  getCurrentTask(): Task;
3147
3131
  private mustRenderForms;
3132
+ get locked(): boolean;
3133
+ lock(): () => void;
3148
3134
  run(executionConfig: TExecutionConfig): Promise<void>;
3149
3135
  protected getHiddenForms(): Form[];
3150
3136
  markFormAsRendered(frmParent: string, frmName: string): void;
3151
3137
  delegate(): Promise<void>;
3152
3138
  shareSocial(): Promise<void>;
3153
- confirm(): void;
3154
- next(): void;
3139
+ flow: {
3140
+ back: () => void;
3141
+ confirm: () => void;
3142
+ next: () => void;
3143
+ previous: () => void;
3144
+ save: () => void;
3145
+ release: () => void;
3146
+ delegate: () => void;
3147
+ share: () => void;
3148
+ viewDocs: () => void;
3149
+ print: () => void;
3150
+ };
3155
3151
  sendToDesktop(): void;
3156
3152
  doBack(): Promise<false | undefined>;
3157
3153
  doConfirm(status?: Status): Promise<boolean | FlowModal<any> | Field>;
@@ -3163,7 +3159,7 @@ declare class Execution extends EventEmitter$1<{
3163
3159
  definition: Omit<TApiaFieldBaseDefinition<TApiaFieldCommonProperties>, "properties">;
3164
3160
  }> | ShowSignSelection | undefined>;
3165
3161
  doPrint(): Promise<void>;
3166
- doSave(): Promise<TApiaApiAxiosResponse<(TFetchTaskActionResponse & ResponseSysMessages) | null> | undefined>;
3162
+ doSave(): Promise<false | TApiaApiAxiosResponse<(TFetchTaskActionResponse & ResponseSysMessages) | null>>;
3167
3163
  getStepTitle(step: number): {
3168
3164
  title: string;
3169
3165
  stepNumber: number;
@@ -3394,7 +3390,7 @@ declare class Captcha extends Field<TApiaCaptchaProperties, TApiaCaptchaDefiniti
3394
3390
 
3395
3391
  type CheckboxEvents = 'onClick';
3396
3392
  declare class Checkbox extends FieldWithAttribute<TApiaCheckboxProperties, boolean> {
3397
- fireEvent(eventName: CheckboxEvents): Promise<boolean>;
3393
+ fireEvent(eventName: CheckboxEvents, options?: TFireEventOptions): Promise<boolean>;
3398
3394
  protected getInitialValue({ value, properties, }: TApiaFieldWithAttributeBaseProps<TApiaCheckboxProperties>): Promise<boolean>;
3399
3395
  setValue(newValue: boolean, options?: Partial<{
3400
3396
  comparator: Comparator$1<any>;
@@ -3406,7 +3402,7 @@ declare class Checkbox extends FieldWithAttribute<TApiaCheckboxProperties, boole
3406
3402
 
3407
3403
  type EditorEvents = 'onChange';
3408
3404
  declare class Editor extends TranslatableField<TApiaEditorProperties, string> {
3409
- fireEvent(eventName: EditorEvents): Promise<boolean>;
3405
+ fireEvent(eventName: EditorEvents, options?: TFireEventOptions): Promise<boolean>;
3410
3406
  protected isValidValue(): boolean;
3411
3407
  }
3412
3408
 
@@ -3650,7 +3646,8 @@ declare class Image extends Field<TApiaImageProperties> {
3650
3646
 
3651
3647
  type InputEvents$1 = 'onChange' | 'onModalReturn';
3652
3648
  declare class Input extends TranslatableField<TApiaInputProperties, string, TApiaInputDefinition> {
3653
- fireEvent(eventName: InputEvents$1): Promise<boolean>;
3649
+ private validDate;
3650
+ fireEvent(eventName: InputEvents$1, options?: TFireEventOptions): Promise<boolean>;
3654
3651
  setValue(newValue: string | Date | number, options?: SetValueOptions): Promise<boolean>;
3655
3652
  private validateRegex;
3656
3653
  validate(): Promise<boolean>;
@@ -3690,7 +3687,7 @@ type ModalInputValue = {
3690
3687
  declare class ModalInput extends FieldWithAttribute<TApiaInputProperties, ModalInputValue> {
3691
3688
  isLoading: boolean;
3692
3689
  constructor({ value, ...definition }: TApiaModalInputDefinition);
3693
- fireEvent(eventName: InputEvents): Promise<boolean>;
3690
+ fireEvent(eventName: InputEvents, options?: TFireEventOptions): Promise<boolean>;
3694
3691
  protected hasValue(): boolean;
3695
3692
  setValueFromInputWrite(value: string): Promise<void>;
3696
3693
  setValueFromModalSelection(rowId: string): Promise<void>;
@@ -3719,7 +3716,7 @@ type RadioEvents = 'onPopulate' | 'onChange' | 'onClick';
3719
3716
  declare class Radio extends FieldWithAttribute<TApiaRadioProperties, number | string, TApiaRadioButtonDefinition> {
3720
3717
  constructor({ possibleValue, ...definition }: TApiaRadioButtonDefinition);
3721
3718
  init(form: Form): Promise<void>;
3722
- fireEvent(eventName: RadioEvents): Promise<boolean>;
3719
+ fireEvent(eventName: RadioEvents, options?: TFireEventOptions): Promise<boolean>;
3723
3720
  }
3724
3721
 
3725
3722
  declare class Select extends FieldWithAttribute<TApiaSelectProperties, string, TApiaSelectDefinition> {
@@ -3741,7 +3738,7 @@ declare class Tree extends FieldWithAttribute<TApiaTreeProperties, TTreeValue[],
3741
3738
  private parseTreeValues;
3742
3739
  constructor({ possibleValue, ...props }: TApiaTreeDefinition);
3743
3740
  protected getSynchronizePostConfiguration(value: TTreeValue[]): IApiaApiPostConfig<any>;
3744
- fireEvent(eventName: TreeEvents): Promise<boolean>;
3741
+ fireEvent(eventName: TreeEvents, options?: TFireEventOptions): Promise<boolean>;
3745
3742
  protected hasValue(): boolean;
3746
3743
  setProperty<K extends keyof TApiaTreeProperties>(propName: K, propValue: TApiaTreeProperties[K]): void;
3747
3744
  init(form: Form): Promise<void>;
@@ -3770,7 +3767,7 @@ declare class SchedulerField extends Field<TApiaSchedulerProperties> {
3770
3767
  loadWeek(weekDay: string, schId: string, proId: string, proVerId: string, tskId: string): Promise<(TScheduleResult & ResponseSysMessages) | null>;
3771
3768
  loadInfo(schId: string, weekDay: string, dayNumber: number, hour: string): Promise<_apia_scheduler_controller.TProcesses>;
3772
3769
  markDay(weekDay: string, hour: string, dayNumber: number): Promise<void>;
3773
- get schedController(): Scheduler;
3770
+ get schedController(): Scheduler | undefined;
3774
3771
  }
3775
3772
 
3776
3773
  declare const IProperty: {
@@ -4062,5 +4059,5 @@ declare function getLabel(execution: Execution, label: string, replacers?: Parti
4062
4059
 
4063
4060
  declare function parseFakeJSON<T extends Record<string, unknown>>(str: string): T;
4064
4061
 
4065
- 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 };
4062
+ 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 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 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 };
4066
4063
  //# sourceMappingURL=index.d.ts.map