ets-fe-ng-sdk 20.3.6 → 20.3.8
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/fesm2022/ets-fe-ng-sdk.mjs +12 -8
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/index.d.ts +32 -29
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -710,7 +710,7 @@ declare class TableCol<TRow = any> implements ITableCol<TRow> {
|
|
|
710
710
|
/** Field name from row data to display in this column */
|
|
711
711
|
f: KeyOfType<TRow, string | number | boolean | undefined | null>;
|
|
712
712
|
/** Function to format the cell value for display */
|
|
713
|
-
formatter?: (val: any) => string | undefined | Promise<string | undefined> | Observable<string | undefined>;
|
|
713
|
+
formatter?: (val: any) => string | undefined | null | Promise<string | undefined | null> | Observable<string | undefined | null>;
|
|
714
714
|
/** Function to format the cell value when expanded */
|
|
715
715
|
expandedFormatter?: (val: any) => string | undefined | Promise<string | undefined> | Observable<string | undefined>;
|
|
716
716
|
/** Function to generate hint/tooltip text for the cell */
|
|
@@ -3208,7 +3208,7 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
|
|
|
3208
3208
|
* @returns Array containing value, validators, and async validators
|
|
3209
3209
|
* @template T - Type of the form control value
|
|
3210
3210
|
*/
|
|
3211
|
-
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (
|
|
3211
|
+
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | AsyncValidatorFn | ValidatorFn[] | AsyncValidatorFn[] | FormControlOptions | T)[];
|
|
3212
3212
|
/**
|
|
3213
3213
|
* Navigates back to the previous page using Angular's Location service
|
|
3214
3214
|
*/
|
|
@@ -3257,6 +3257,9 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
|
|
|
3257
3257
|
* subscription.unsubscribe();
|
|
3258
3258
|
*/
|
|
3259
3259
|
onlyOneInput(inputs: FormControl[]): Subscription;
|
|
3260
|
+
formatCode: (map: {
|
|
3261
|
+
[code: string]: Partial<ICodeTitle & ICodeDescription>;
|
|
3262
|
+
}) => (code: string | undefined | null) => string;
|
|
3260
3263
|
/**
|
|
3261
3264
|
* Copies a payload to clipboard in debug mode
|
|
3262
3265
|
* @param payload - Data to be copied to clipboard
|
|
@@ -4460,8 +4463,8 @@ declare class ApiService {
|
|
|
4460
4463
|
* @param extras Extra configurations for the request
|
|
4461
4464
|
* @returns Observable of type T
|
|
4462
4465
|
*/
|
|
4463
|
-
patch<T = any>(route: string, body?: any, extras?:
|
|
4464
|
-
optionsHandler: (extras?:
|
|
4466
|
+
patch<T = any>(route: string, body?: any, extras?: IAPIConfig): Observable<T>;
|
|
4467
|
+
optionsHandler: (extras?: IAPIConfig) => {};
|
|
4465
4468
|
/**
|
|
4466
4469
|
* Performs a POST request
|
|
4467
4470
|
* @param route API endpoint
|
|
@@ -4469,7 +4472,7 @@ declare class ApiService {
|
|
|
4469
4472
|
* @param extras Extra configurations for the request
|
|
4470
4473
|
* @returns Observable of type T
|
|
4471
4474
|
*/
|
|
4472
|
-
post<T = any>(route: string, body?: any, extras?:
|
|
4475
|
+
post<T = any>(route: string, body?: any, extras?: IAPIConfig): Observable<T>;
|
|
4473
4476
|
/**
|
|
4474
4477
|
* Performs a POST request with FormData
|
|
4475
4478
|
* @param route API endpoint
|
|
@@ -4477,7 +4480,7 @@ declare class ApiService {
|
|
|
4477
4480
|
* @param extras Extra configurations for the request
|
|
4478
4481
|
* @returns Observable of type T
|
|
4479
4482
|
*/
|
|
4480
|
-
postFile<T = any>(route: string, body: FormData, extras?:
|
|
4483
|
+
postFile<T = any>(route: string, body: FormData, extras?: IAPIConfig): Observable<T>;
|
|
4481
4484
|
/**
|
|
4482
4485
|
* Performs a POST request with FormData and endorsement header
|
|
4483
4486
|
* @param route API endpoint
|
|
@@ -4492,7 +4495,7 @@ declare class ApiService {
|
|
|
4492
4495
|
* @param extras Extra configurations for the request
|
|
4493
4496
|
* @returns Observable of string
|
|
4494
4497
|
*/
|
|
4495
|
-
postString(route: string, body?: any, extras?:
|
|
4498
|
+
postString(route: string, body?: any, extras?: IAPIConfig): Observable<string>;
|
|
4496
4499
|
/**
|
|
4497
4500
|
* Performs a POST request with text content type and local caching
|
|
4498
4501
|
* @param route API endpoint
|
|
@@ -4507,7 +4510,7 @@ declare class ApiService {
|
|
|
4507
4510
|
* @param extras Extra configurations for the request
|
|
4508
4511
|
* @returns
|
|
4509
4512
|
*/
|
|
4510
|
-
get: <T = any>(route: string, parameters?: IObjectLiteral, extras?:
|
|
4513
|
+
get: <T = any>(route: string, parameters?: IObjectLiteral, extras?: IAPIConfig) => Observable<T>;
|
|
4511
4514
|
/**
|
|
4512
4515
|
* Fetches code data and sorts it
|
|
4513
4516
|
* @param route API endpoint
|
|
@@ -4523,7 +4526,7 @@ declare class ApiService {
|
|
|
4523
4526
|
*/
|
|
4524
4527
|
getText: <T = string>(route: string, parameters?: {
|
|
4525
4528
|
[field: string]: string | number | boolean;
|
|
4526
|
-
}, extras?:
|
|
4529
|
+
}, extras?: IAPIConfig) => Observable<T>;
|
|
4527
4530
|
/**
|
|
4528
4531
|
* Performs a GET request for file download
|
|
4529
4532
|
* @param route API endpoint
|
|
@@ -4533,7 +4536,7 @@ declare class ApiService {
|
|
|
4533
4536
|
*/
|
|
4534
4537
|
getFile: <T = string>(route: string, parameters?: {
|
|
4535
4538
|
[field: string]: string | number | boolean;
|
|
4536
|
-
}, extras?:
|
|
4539
|
+
}, extras?: IAPIConfig) => Observable<T>;
|
|
4537
4540
|
/**
|
|
4538
4541
|
* Performs a GET request with a request body
|
|
4539
4542
|
* @param route API endpoint
|
|
@@ -4541,7 +4544,7 @@ declare class ApiService {
|
|
|
4541
4544
|
* @param extras Extra configurations for the request
|
|
4542
4545
|
* @returns Observable of type T
|
|
4543
4546
|
*/
|
|
4544
|
-
getWithBody: <T = any>(route: string, body?: any, extras?:
|
|
4547
|
+
getWithBody: <T = any>(route: string, body?: any, extras?: IAPIConfig) => Observable<T>;
|
|
4545
4548
|
/**
|
|
4546
4549
|
* Gets data from local cache or fetches it if not available
|
|
4547
4550
|
* @param route API endpoint
|
|
@@ -4549,7 +4552,7 @@ declare class ApiService {
|
|
|
4549
4552
|
* @param extras Extra configurations for the request
|
|
4550
4553
|
* @returns Observable of type T
|
|
4551
4554
|
*/
|
|
4552
|
-
getFromlocal: <T = any>(route: string, parameters?: Object, extras?:
|
|
4555
|
+
getFromlocal: <T = any>(route: string, parameters?: Object, extras?: IAPIConfig) => Observable<T>;
|
|
4553
4556
|
/**
|
|
4554
4557
|
* Gets data with local caching - returns cached data first, then updates with fresh data
|
|
4555
4558
|
* @param route API endpoint
|
|
@@ -4557,7 +4560,7 @@ declare class ApiService {
|
|
|
4557
4560
|
* @param extras Extra configurations for the request
|
|
4558
4561
|
* @returns Observable of type T
|
|
4559
4562
|
*/
|
|
4560
|
-
getWithLocalCache: <T = any>(route: string, parameters?: Object, extras?:
|
|
4563
|
+
getWithLocalCache: <T = any>(route: string, parameters?: Object, extras?: IAPIConfig) => Observable<T>;
|
|
4561
4564
|
/**
|
|
4562
4565
|
* Gets data from memory cache or fetches it if not available
|
|
4563
4566
|
* @param route API endpoint
|
|
@@ -4565,7 +4568,7 @@ declare class ApiService {
|
|
|
4565
4568
|
* @param extras Extra configurations for the request
|
|
4566
4569
|
* @returns Observable of type T
|
|
4567
4570
|
*/
|
|
4568
|
-
getFromMemory: <T>(route: string, parameters?: Object, extras?:
|
|
4571
|
+
getFromMemory: <T>(route: string, parameters?: Object, extras?: IAPIConfig) => Observable<T>;
|
|
4569
4572
|
/**
|
|
4570
4573
|
* Converts an object to URL query parameters
|
|
4571
4574
|
* @param parameters Object to convert
|
|
@@ -4579,7 +4582,7 @@ declare class ApiService {
|
|
|
4579
4582
|
* @param extras Extra configurations for the request
|
|
4580
4583
|
* @returns Observable of type T
|
|
4581
4584
|
*/
|
|
4582
|
-
put<T = any>(route: string, body?: any, extras?:
|
|
4585
|
+
put<T = any>(route: string, body?: any, extras?: IAPIConfig): Observable<T>;
|
|
4583
4586
|
/**
|
|
4584
4587
|
* Performs a PUT request with FormData
|
|
4585
4588
|
* @param route API endpoint
|
|
@@ -4601,7 +4604,7 @@ declare class ApiService {
|
|
|
4601
4604
|
* @param extras Extra configurations for the request
|
|
4602
4605
|
* @returns Observable of type T
|
|
4603
4606
|
*/
|
|
4604
|
-
delete: <T = any>(route: string, extras?:
|
|
4607
|
+
delete: <T = any>(route: string, extras?: IAPIConfig) => Observable<any>;
|
|
4605
4608
|
/**
|
|
4606
4609
|
* Performs a DELETE request with a request body
|
|
4607
4610
|
* @param route API endpoint
|
|
@@ -4609,14 +4612,14 @@ declare class ApiService {
|
|
|
4609
4612
|
* @param extras Extra configurations for the request
|
|
4610
4613
|
* @returns Observable of type T
|
|
4611
4614
|
*/
|
|
4612
|
-
deleteWithBody: <T = any>(route: string, body?: any, extras?:
|
|
4615
|
+
deleteWithBody: <T = any>(route: string, body?: any, extras?: IAPIConfig) => Observable<any>;
|
|
4613
4616
|
/**
|
|
4614
4617
|
* Performs a DELETE request with text response type
|
|
4615
4618
|
* @param route API endpoint
|
|
4616
4619
|
* @param extras Extra configurations for the request
|
|
4617
4620
|
* @returns Observable of string
|
|
4618
4621
|
*/
|
|
4619
|
-
deleteText: (route: string, extras?:
|
|
4622
|
+
deleteText: (route: string, extras?: IAPIConfig) => Observable<any>;
|
|
4620
4623
|
/**
|
|
4621
4624
|
* Sorts an array of objects by code property
|
|
4622
4625
|
* @param data Array to sort
|
|
@@ -4632,7 +4635,7 @@ declare class ApiService {
|
|
|
4632
4635
|
/**
|
|
4633
4636
|
* Interface for extra request configurations
|
|
4634
4637
|
*/
|
|
4635
|
-
interface
|
|
4638
|
+
interface IAPIConfig {
|
|
4636
4639
|
/**
|
|
4637
4640
|
* Specify whether to use the endorsement header
|
|
4638
4641
|
*/
|
|
@@ -5657,7 +5660,7 @@ declare class BtnComponent implements OnInit {
|
|
|
5657
5660
|
/** CSS class for the button */
|
|
5658
5661
|
readonly _mclass: _angular_core.WritableSignal<string>;
|
|
5659
5662
|
/** HTML button type (submit, button, reset) */
|
|
5660
|
-
readonly actionType: _angular_core.InputSignal<"submit" | "
|
|
5663
|
+
readonly actionType: _angular_core.InputSignal<"submit" | "reset" | "button">;
|
|
5661
5664
|
/** Enables animation effect on the button */
|
|
5662
5665
|
readonly animate: _angular_core.InputSignal<boolean>;
|
|
5663
5666
|
/** Excludes this button from logging when true */
|
|
@@ -5674,13 +5677,13 @@ declare class BtnComponent implements OnInit {
|
|
|
5674
5677
|
*/
|
|
5675
5678
|
set customIcon(v: string);
|
|
5676
5679
|
/** Form to bind to the button for validation */
|
|
5677
|
-
readonly form: _angular_core.InputSignal<
|
|
5680
|
+
readonly form: _angular_core.InputSignal<AbstractControl<any, any, any> | FormGroup<any> | FormArray<any> | FormControl<any>>;
|
|
5678
5681
|
/** Subject for form changes */
|
|
5679
5682
|
protected readonly formStateRes: _angular_core.ResourceRef<boolean>;
|
|
5680
5683
|
/** Signal for form validity state */
|
|
5681
5684
|
protected readonly formState: _angular_core.Signal<boolean>;
|
|
5682
5685
|
/** Multiple forms to bind to the button for validation */
|
|
5683
|
-
readonly forms: _angular_core.InputSignal<(
|
|
5686
|
+
readonly forms: _angular_core.InputSignal<(AbstractControl<any, any, any> | FormGroup<any> | FormArray<any> | FormControl<any>)[]>;
|
|
5684
5687
|
/** Signal for multiple forms validity state */
|
|
5685
5688
|
protected readonly formsStateRes: _angular_core.ResourceRef<Omit<IFormState, "status">>;
|
|
5686
5689
|
protected readonly formsState: _angular_core.Signal<boolean>;
|
|
@@ -7980,7 +7983,7 @@ declare class InfoDialogComponent implements OnInit {
|
|
|
7980
7983
|
* @param status Status code (0=danger, 1=success, 2=info, 3=warning)
|
|
7981
7984
|
* @returns CSS class name corresponding to the status
|
|
7982
7985
|
*/
|
|
7983
|
-
cls: (status?: 0 | 1 | 2 | 3) => "" | "
|
|
7986
|
+
cls: (status?: 0 | 1 | 2 | 3) => "" | "info" | "danger" | "success" | "warning";
|
|
7984
7987
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
7985
7988
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
7986
7989
|
}
|
|
@@ -8857,7 +8860,7 @@ declare class ResizeGridPipe implements PipeTransform {
|
|
|
8857
8860
|
*/
|
|
8858
8861
|
declare class IndexCompLayoutComponent {
|
|
8859
8862
|
/** Number of columns in the grid layout */
|
|
8860
|
-
readonly grid: InputSignal<
|
|
8863
|
+
readonly grid: InputSignal<2 | 1 | 4 | 3 | 5 | 6 | "auto">;
|
|
8861
8864
|
/** Whether to show the action buttons */
|
|
8862
8865
|
readonly showButtons: InputSignal<boolean>;
|
|
8863
8866
|
/** Whether to hide the clone button */
|
|
@@ -9657,8 +9660,8 @@ declare class PhoneNumberComponent extends InputBasicComponent {
|
|
|
9657
9660
|
getExtension(number: string, iso2: string | undefined): string;
|
|
9658
9661
|
getNumberType(number: string, iso2: string | undefined): number;
|
|
9659
9662
|
getValidationError(number: string, iso2: string | undefined): number;
|
|
9660
|
-
isPossibleNumber(number: string, iso2: string | undefined, numberType?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "
|
|
9661
|
-
isValidNumber(number: string, iso2: string | undefined, numberType?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "
|
|
9663
|
+
isPossibleNumber(number: string, iso2: string | undefined, numberType?: ("UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
|
|
9664
|
+
isValidNumber(number: string, iso2: string | undefined, numberType?: ("UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
|
|
9662
9665
|
numberFormat: {
|
|
9663
9666
|
NATIONAL: number;
|
|
9664
9667
|
INTERNATIONAL: number;
|
|
@@ -9669,12 +9672,12 @@ declare class PhoneNumberComponent extends InputBasicComponent {
|
|
|
9669
9672
|
};
|
|
9670
9673
|
}>;
|
|
9671
9674
|
nationalMode?: boolean;
|
|
9672
|
-
placeholderNumberType?: "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "
|
|
9675
|
+
placeholderNumberType?: "UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP";
|
|
9673
9676
|
showFlags?: boolean;
|
|
9674
9677
|
separateDialCode?: boolean;
|
|
9675
9678
|
strictMode?: boolean;
|
|
9676
9679
|
useFullscreenPopup?: boolean;
|
|
9677
|
-
validationNumberTypes?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "
|
|
9680
|
+
validationNumberTypes?: ("UNKNOWN" | "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "VOICEMAIL" | "VOIP")[] | null;
|
|
9678
9681
|
}>;
|
|
9679
9682
|
/**
|
|
9680
9683
|
* Initializes the component by adding a custom validator to the form control.
|
|
@@ -14523,4 +14526,4 @@ declare class WebUserResetPasswordComponent {
|
|
|
14523
14526
|
}
|
|
14524
14527
|
|
|
14525
14528
|
export { AddItemComponent, ApiService, AppRouteBase, AppRouteService, AppRouteState, AppService, ArraySplitter, AuthenticationInterceptorService, AutocompleteComponent, AutocompleteModule, AutocompleteService, AutocompleteTdRfComponent, BaseFormGenerator, BaseNativeEventListenerDirective, BlinkingBlocksComponent, BouncingBallComponent, Btn, BtnComponent, BtnLg, BtnLgComponent, BtnLinkComponent, BtnModule, BtnService, ButtonComponent, CETSInput, CacheService, CacheUpdaterService, CardComponent, CardComponent as CardModule, CodeTitleDescPipe, CommafyNumberDirective, ButtonComponent as ComponentsModule, Config, ConfirmDialogComponent, ConfirmDialogComponent as ConfirmDialogModule, Constant, CustomDatePipe, DEFAULT_TIMEOUT, DateInputComponent, Day, DayHourMinInputComponent, DebouncerService, DesktopClassDirective, DetailsBtnComponent, DetailsBtnComponent as DetailsBtnModule, DirectivesModule, DocumentsNameDisplayComponent, DocumentsNameDisplayComponent as DocumentsNameDisplayModule, DragDropFileUploadDirective, EETSPageBtnID, ELanguage, EMenuLocation, EMenuType, EPageType, ESubSystem, ESystem, ESystemBusLine, ETSCheckForUpdateService, ETSConfirmDialogService, ETSExtraPagesModule, ETSFKVP, ETSForms, ETSHandleUnrecoverableStateService, ETSKVP, ETSLogUpdateService, ETSLoggerModule, ETSMenuItem, ETSMenuItemDivider, ETSPageNotFoundComponent, ETSPromptUpdateService, ETSReactiveFormInputService, ETSResetModule, ETSResponsivenessDirectiveModule, ETSRobotModule, ETSServiceWorkerService, ETSStorageService, ETSThemeService, ETSTimeoutTesterModule, ETSVersionModule, ETSWindowSecurityService, EUA, EVFunctions, EValidationType, EditableTextCaseComponent, EditableTextCaseComponent as EditableTextCaseModule, SDKEnvironment as Environment, EqualChildrenDirective, ErrorMessagePipe, ErrorReporterService, ExportTableComponent, ExportTableComponent as ExportTableModule, FCInput, FadingBarsComponent, FadingCirclesComponent, FieldToLabelPipe, FieldsToDisplayComponent, FileUploadComponent, FilterArrayByStringPipe, FilterArrayPipe, FilterFormArrayControlPipe, FilterFormArrayGroupPipe, FilterOptions, FindItemComponent, FormErrorComponent, FormGeneratedValueComponent, FormGeneratorComponent, FormGeneratorComponent as FormGeneratorModule, FormGeneratorService, FormInvalidClassDirective, FormInvalidClassPipe, FormLinkComponent, FormLinkComponent as FormLinkModule, FormSchemaToTableColumnsPipe, FormTabHeadersComponent, FormTabHeadersComponent as FormTabHeadersModule, FormValuePipe, FunctionCaller, FunctionCaller1, FunctionCaller2, FunctionCaller3, GenderPipe, GetColFormattedEPipe, GetColFormattedPipe, GetHeadersPipe, GetRawFieldsPipe, GetValueLabel, GlobalErrorHandlerService, HasFormValuePipe, HasValuePipe, HideDesktopDirective, HideMobileDirective, HtmlerService, HttpListCaller, HttpListCaller1, HttpListCaller2, IdlerComponent, IdlerService, ImageLoaderDirective, ImageUpload, IndexCompLayoutComponent, InfoDialogComponent, InfoDialogModule, InfoDialogService, InfoIconComponent, InfoIconComponent as InfoIconModule, InputBasicComponent, InputClassPipe, InputComponent, InputComponents, InputControlComponent, InputFormatDirective, InputFormatService, InputLabelComponent, InputModule, InputNGModelComponent, InputNGModelComponent as InputNGModelModule, InputPipesModule, InputService, InputTD_RFComponent, InputTableComponent, InputTableService, IntegerOnlyDirective, IsClonePage, IsShowPage, LabelComponent, LabelComponent as LabelModule, Lbl, ListOptionFinderPipe, LoaderComponent, LoaderComponent as LoaderModule, LoaderService, LocalCacheService, Log, LoggerComponent, LoggerInterceptorService, LoggerRoutingModule, LoggerService, MHrefDirective, MobileClassDirective, ModalBodyDirective, ModalComponent, ModalComponents, ModalFooterDirective, ModalFormComponent, ModalFormComponent as ModalFormModule, ModalHeaderComponent, ModalHeaderComponent as ModalHeaderModule, ModalComponent as ModalModule, MouseClickListenerDirective, MouseEnterListenerDirective, MouseLeaveListenerDirective, MrouterLinkirective, NELEventName, NarrationHistoryCompComponent, NativeEventListenerDirectives, NegativeNumberOnlyDirective, NumberFormatService, NumberPipe, ObjectToArrayPipe, ObjectToLabelsPipe, OnClickDirective, OptionLabeller, OptionerPipe, OptionsFormatter, PSDirective, PageCenterBodyComponent, PageLoader, PageLoaderService, PageModal, PageService, PageTemplateComponent, PageTemplateComponent as PageTemplateModule, PageToComponentComponent, PageToComponentDirective, PageToComponentComponent as PageToComponentModule, PageToComponentService, PaginatorComponent, PaginatorPipe, PhoneNumberComponent, PhoneNumberService, PointerMoveListenerDirective, prototypes_d as Prototypes, RefresherPipe, RemoveUsedOptionsPipe, RemoveUsedOptionsReactivePipe, ReplaceAllPipe, RequestLoggerInterceptorService, RequestTimeoutInterceptorService, ResizeGridPipe, ResponsiveValPipe, ResponsivenessDirective, ReverseTranslateSingleNLPipe, RichTextEditorComponent, RichTextEditorRFComponent, RingRipplesComponent, RoundPipe, RouteItem, RowActionsComponent, RowActionsComponent as RowActionsModule, BaseEffect as SDKBaseEffect, BaseFacadeService as SDKBaseFacadeService, BaseService as SDKBaseService, SDKTranslateNoLoaderPipe, SDKTranslatePipe, SDKTranslateSingleNoLoaderPipe, SDKTranslateSinglePipe, SaverClass, SaverService, SecondsToTimePipe, SharedModule, SortPipe, SpinnerComponent, StorageClass, StrConcatenatorPipe, SvgIconComponent, SvgIconService, TableBaseComponent, TableCol, TableHttpsComponent, TableInputClassFunctionPipe, TableInputComponent, TableInputRowComponent, TablePipesModule, TablePlainComponent, TableService, TableToStringPipe, TextAreaModalComponent, TextAreaModalService, TextCase1Component, TextCase2Component, TextCase2ForObject, TextCaseInputComponent, TextCaseService, TextComponent, ToAnyArrayPipe, ToAnyPipe, ToggleInputFormComponent, TranslatePipeModule, TranslationService, TranslatorCaseComponent, TranslatorDirective, TrimPipe, TrimTextPipe, TyperPipe, UserActivity, UserActivityService, UtilityPipesModule, UtilityService, ValidationMessageComponent, ValidationMessageNgmodelComponent, ValidationMsg, Validator, ValueFormatterPipe, ValueOrXPipe, VersionService, VerticalNavComponent, ViewFormButtonsComponent, ViewFormButtonsComponent as ViewFormButtonsModule, WatermarkComponent, WebUserAuthenticationService, WebUserForgotPasswordComponent, WebUserLoginComponent, WebUserResetPasswordComponent, WebcamMediaComponent, XOrYPipe, YearMonthTdRfComponent, _SharedModule, configForms, configPatterns, configValidationMessages, environment, pageErrorRouter, webUserAuthenticationGuard, webUserAuthenticationInterceptor, widthOffsetPipe };
|
|
14526
|
-
export type { BtnGroup, BtnType, CellType, CustomValidationError, ETimeType, IAutoCompleteOption, IBaseFormSchema, IBtn, ICode, ICodeDescription, ICodeTitle, IConfigImages, ICountry, IDocMetadata, IETSMenuItem, IETSMenuItemBase, IETSMenuItemRaw, IETSMenuItemRawBase, IFile_Metadata, IFindItemShownFields, IFormGeneratorConfig, IFormOptions, IFormSchema, IFormSchema2, IGetQuery, IInfoDialogBtn, IInputConfig, IInputTableScheme, IKVP, ILbl, ILog, IMktDescription, IObjectLiteral, IOption, IPageErrorConfig, IPageState, IResponse, IRowOption, ISearchFormSchema, ISearchResponse, ISearchResponse2, IServiceFunction, IStrictFormGroup, ISystem, ITab, ITableCol, ITableInputBtn, ITableInputFormSchema, ITableName, ITableSearchFunc, ITableSearchResp, ITextCase2, IToggleOption, IToggleRow, ITranslatorConfig, ITypeDescription, IUADeletionPayload, IUASearchObj, IUASearchResponse, IUploadSubmissionResp, IUserActivity, IValidationMessage, IValidationResp, IValueLabel, IWebUser, IWebcamMedia, IconType, ImageType, InputSubType, InputType, KeyOfType, NELEvent, NELEventHandler, NELMouseEventHandler, NELPointerEventHandler, NELQuery, OptionLabelType, RefCat, SVGIconType, SortType, Status, SubCategory, TypeOf, ValueType };
|
|
14529
|
+
export type { BtnGroup, BtnType, CellType, CustomValidationError, ETimeType, IAPIConfig, IAutoCompleteOption, IBaseFormSchema, IBtn, ICode, ICodeDescription, ICodeTitle, IConfigImages, ICountry, IDocMetadata, IETSMenuItem, IETSMenuItemBase, IETSMenuItemRaw, IETSMenuItemRawBase, IFile_Metadata, IFindItemShownFields, IFormGeneratorConfig, IFormOptions, IFormSchema, IFormSchema2, IGetQuery, IInfoDialogBtn, IInputConfig, IInputTableScheme, IKVP, ILbl, ILog, IMktDescription, IObjectLiteral, IOption, IPageErrorConfig, IPageState, IResponse, IRowOption, ISearchFormSchema, ISearchResponse, ISearchResponse2, IServiceFunction, IStrictFormGroup, ISystem, ITab, ITableCol, ITableInputBtn, ITableInputFormSchema, ITableName, ITableSearchFunc, ITableSearchResp, ITextCase2, IToggleOption, IToggleRow, ITranslatorConfig, ITypeDescription, IUADeletionPayload, IUASearchObj, IUASearchResponse, IUploadSubmissionResp, IUserActivity, IValidationMessage, IValidationResp, IValueLabel, IWebUser, IWebcamMedia, IconType, ImageType, InputSubType, InputType, KeyOfType, NELEvent, NELEventHandler, NELMouseEventHandler, NELPointerEventHandler, NELQuery, OptionLabelType, RefCat, SVGIconType, SortType, Status, SubCategory, TypeOf, ValueType };
|