@solcre-org/core-ui 2.12.33 → 2.12.35
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/assets/i18n/en/common.json +2 -0
- package/assets/i18n/es/common.json +2 -0
- package/fesm2022/solcre-org-core-ui.mjs +8459 -8080
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +120 -55
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1016,6 +1016,39 @@ interface ModalTabConfig<T extends DataBaseModelInterface> {
|
|
|
1016
1016
|
icon?: string;
|
|
1017
1017
|
}
|
|
1018
1018
|
|
|
1019
|
+
declare enum StepStatus {
|
|
1020
|
+
PENDING = "pending",
|
|
1021
|
+
ACTIVE = "active",
|
|
1022
|
+
COMPLETE = "complete"
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
declare enum StepType {
|
|
1026
|
+
NUMBER = "number",
|
|
1027
|
+
TEXT = "text",
|
|
1028
|
+
ICON = "icon"
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
interface StepItemConfig {
|
|
1032
|
+
id: string;
|
|
1033
|
+
title: string;
|
|
1034
|
+
status: StepStatus;
|
|
1035
|
+
type: StepType;
|
|
1036
|
+
content?: string | number;
|
|
1037
|
+
icon?: string;
|
|
1038
|
+
disabled?: boolean;
|
|
1039
|
+
clickable?: boolean;
|
|
1040
|
+
customClass?: string;
|
|
1041
|
+
tooltip?: string;
|
|
1042
|
+
data?: any;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
interface ModalStepConfig<T extends DataBaseModelInterface> extends StepItemConfig {
|
|
1046
|
+
fields: ModalFieldConfig<T>[];
|
|
1047
|
+
hasError?: boolean;
|
|
1048
|
+
visible?: boolean;
|
|
1049
|
+
customTemplate?: TemplateRef<any> | null;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1019
1052
|
interface ModalButtonConfig<T> {
|
|
1020
1053
|
text: string;
|
|
1021
1054
|
class?: string;
|
|
@@ -1045,6 +1078,31 @@ interface GenericTabConfig {
|
|
|
1045
1078
|
allowCustomTemplate?: boolean;
|
|
1046
1079
|
}
|
|
1047
1080
|
|
|
1081
|
+
declare enum StepSize {
|
|
1082
|
+
SMALL = "small",
|
|
1083
|
+
MEDIUM = "medium",
|
|
1084
|
+
LARGE = "large"
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
interface StepsConfig {
|
|
1088
|
+
steps: StepItemConfig[];
|
|
1089
|
+
activeStepId?: string;
|
|
1090
|
+
size?: StepSize;
|
|
1091
|
+
showConnectors?: boolean;
|
|
1092
|
+
clickable?: boolean;
|
|
1093
|
+
customClass?: string;
|
|
1094
|
+
colors?: {
|
|
1095
|
+
pending?: string;
|
|
1096
|
+
active?: string;
|
|
1097
|
+
complete?: string;
|
|
1098
|
+
connector?: string;
|
|
1099
|
+
};
|
|
1100
|
+
layout?: 'horizontal' | 'vertical';
|
|
1101
|
+
showLabels?: boolean;
|
|
1102
|
+
showNumbers?: boolean;
|
|
1103
|
+
onStepClick?: (step: StepItemConfig) => void;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1048
1106
|
declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
1049
1107
|
private elementRef;
|
|
1050
1108
|
private formBuilder;
|
|
@@ -1058,15 +1116,20 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1058
1116
|
data: _angular_core.InputSignal<T | null>;
|
|
1059
1117
|
fields: _angular_core.InputSignal<ModalFieldConfig<T>[]>;
|
|
1060
1118
|
tabs: _angular_core.InputSignal<ModalTabConfig<T>[]>;
|
|
1119
|
+
steps: _angular_core.InputSignal<ModalStepConfig<T>[]>;
|
|
1061
1120
|
title: _angular_core.InputSignal<string>;
|
|
1062
1121
|
isMultiple: _angular_core.InputSignal<boolean | undefined>;
|
|
1063
1122
|
customTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1064
1123
|
customViewTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1124
|
+
finalStepTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1065
1125
|
buttonConfig: _angular_core.InputSignal<ModalButtonConfig<T>[]>;
|
|
1066
1126
|
modelFactory: _angular_core.InputSignal<((data: Partial<T>) => T) | null>;
|
|
1067
1127
|
errors: _angular_core.InputSignal<string[]>;
|
|
1068
1128
|
validators: _angular_core.InputSignal<((data: T) => string[])[]>;
|
|
1069
1129
|
customHasChanges: _angular_core.InputSignal<boolean>;
|
|
1130
|
+
stepValidationEnabled: _angular_core.InputSignal<boolean>;
|
|
1131
|
+
allowFreeNavigation: _angular_core.InputSignal<boolean>;
|
|
1132
|
+
autoMarkCompleted: _angular_core.InputSignal<boolean>;
|
|
1070
1133
|
save: _angular_core.OutputEmitterRef<T>;
|
|
1071
1134
|
close: _angular_core.OutputEmitterRef<void>;
|
|
1072
1135
|
modalData: _angular_core.OutputEmitterRef<T>;
|
|
@@ -1078,11 +1141,15 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1078
1141
|
isInitialized: _angular_core.WritableSignal<boolean>;
|
|
1079
1142
|
form: _angular_core.WritableSignal<FormGroup<any>>;
|
|
1080
1143
|
activeTabId: _angular_core.WritableSignal<string>;
|
|
1144
|
+
activeStepId: _angular_core.WritableSignal<string>;
|
|
1081
1145
|
originalData: _angular_core.WritableSignal<T | null>;
|
|
1082
1146
|
hasUnsavedChanges: _angular_core.WritableSignal<boolean>;
|
|
1083
1147
|
hasTabs: _angular_core.Signal<boolean>;
|
|
1148
|
+
hasSteps: _angular_core.Signal<boolean>;
|
|
1084
1149
|
allFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1085
1150
|
activeTabFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1151
|
+
activeStepFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1152
|
+
currentFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1086
1153
|
visibleFieldsForView: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1087
1154
|
dataListItems: _angular_core.Signal<{
|
|
1088
1155
|
key: string;
|
|
@@ -1092,19 +1159,33 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1092
1159
|
visible: boolean;
|
|
1093
1160
|
}[]>;
|
|
1094
1161
|
visibleTabs: _angular_core.Signal<ModalTabConfig<T>[]>;
|
|
1162
|
+
visibleSteps: _angular_core.Signal<ModalStepConfig<T>[]>;
|
|
1163
|
+
currentStepIndex: _angular_core.Signal<number>;
|
|
1164
|
+
isLastStep: _angular_core.Signal<boolean>;
|
|
1165
|
+
currentStep: _angular_core.Signal<ModalStepConfig<T> | null>;
|
|
1166
|
+
showSaveButton: _angular_core.Signal<boolean>;
|
|
1167
|
+
currentStepErrors: _angular_core.Signal<string[]>;
|
|
1168
|
+
isCurrentStepValid: _angular_core.Signal<boolean>;
|
|
1169
|
+
canGoToNextStep: _angular_core.Signal<boolean>;
|
|
1170
|
+
completedStepIds: _angular_core.Signal<Set<string>>;
|
|
1171
|
+
canNavigateFreely: _angular_core.Signal<boolean>;
|
|
1172
|
+
stepsConfig: _angular_core.Signal<StepsConfig>;
|
|
1095
1173
|
hasErrors: _angular_core.Signal<boolean>;
|
|
1096
1174
|
genericTabsConfig: _angular_core.Signal<GenericTabConfig>;
|
|
1097
1175
|
closeButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1098
1176
|
defaultCancelButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1099
1177
|
defaultSaveButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1178
|
+
prevStepButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1179
|
+
nextStepButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1100
1180
|
hasTabErrorsFunction: (tabId: string) => boolean;
|
|
1101
1181
|
getCustomButtonConfig(button: ModalButtonConfig<T>): ButtonConfig;
|
|
1102
1182
|
private getButtonTypeFromClass;
|
|
1103
1183
|
onCustomButtonClick(button: ModalButtonConfig<T>): void;
|
|
1104
1184
|
constructor();
|
|
1105
1185
|
private initializeData;
|
|
1106
|
-
private
|
|
1186
|
+
private initializeActiveTabAndStep;
|
|
1107
1187
|
private validateField;
|
|
1188
|
+
private mapDynamicValidatorErrors;
|
|
1108
1189
|
onFieldValueChange(fieldKey: keyof T, newValue: any): void;
|
|
1109
1190
|
onSelectionChange(event: {
|
|
1110
1191
|
selectedItem: any;
|
|
@@ -1112,7 +1193,9 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1112
1193
|
}): void;
|
|
1113
1194
|
updateField(fieldKey: keyof T, value: any): void;
|
|
1114
1195
|
validateAllFields(): void;
|
|
1196
|
+
validateCurrentStepFields(): void;
|
|
1115
1197
|
getFieldErrors(fieldKey: keyof T): string[];
|
|
1198
|
+
getStepErrors(step: ModalStepConfig<T>): string[];
|
|
1116
1199
|
getFormattedValue(field: ModalFieldConfig<T>, value: any): string;
|
|
1117
1200
|
hasCustomViewTemplate(field: ModalFieldConfig<T>): boolean;
|
|
1118
1201
|
isTemplateRef(template: any): template is TemplateRef<any>;
|
|
@@ -1130,10 +1213,14 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1130
1213
|
onBlurEvent(fieldKey: keyof T): void;
|
|
1131
1214
|
onTabChange(tabId: string): void;
|
|
1132
1215
|
onGenericTabChange(tab: GenericTab): void;
|
|
1216
|
+
onStepChange(stepId: string): void;
|
|
1217
|
+
goToPreviousStep(): void;
|
|
1218
|
+
goToNextStep(): void;
|
|
1133
1219
|
hasTabErrors(tabId: string): boolean;
|
|
1220
|
+
hasStepErrors: (stepId: string) => boolean;
|
|
1134
1221
|
private detectFormChanges;
|
|
1135
1222
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericModalComponent<any>, never>;
|
|
1136
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericModalComponent<any>, "core-generic-modal", never, { "isOpen": { "alias": "isOpen"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "fields": { "alias": "fields"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "isMultiple": { "alias": "isMultiple"; "required": false; "isSignal": true; }; "customTemplate": { "alias": "customTemplate"; "required": false; "isSignal": true; }; "customViewTemplate": { "alias": "customViewTemplate"; "required": false; "isSignal": true; }; "buttonConfig": { "alias": "buttonConfig"; "required": false; "isSignal": true; }; "modelFactory": { "alias": "modelFactory"; "required": false; "isSignal": true; }; "errors": { "alias": "errors"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "customHasChanges": { "alias": "customHasChanges"; "required": false; "isSignal": true; }; }, { "save": "save"; "close": "close"; "modalData": "modalData"; }, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
1223
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericModalComponent<any>, "core-generic-modal", never, { "isOpen": { "alias": "isOpen"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "fields": { "alias": "fields"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "isMultiple": { "alias": "isMultiple"; "required": false; "isSignal": true; }; "customTemplate": { "alias": "customTemplate"; "required": false; "isSignal": true; }; "customViewTemplate": { "alias": "customViewTemplate"; "required": false; "isSignal": true; }; "finalStepTemplate": { "alias": "finalStepTemplate"; "required": false; "isSignal": true; }; "buttonConfig": { "alias": "buttonConfig"; "required": false; "isSignal": true; }; "modelFactory": { "alias": "modelFactory"; "required": false; "isSignal": true; }; "errors": { "alias": "errors"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "customHasChanges": { "alias": "customHasChanges"; "required": false; "isSignal": true; }; "stepValidationEnabled": { "alias": "stepValidationEnabled"; "required": false; "isSignal": true; }; "allowFreeNavigation": { "alias": "allowFreeNavigation"; "required": false; "isSignal": true; }; "autoMarkCompleted": { "alias": "autoMarkCompleted"; "required": false; "isSignal": true; }; }, { "save": "save"; "close": "close"; "modalData": "modalData"; }, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
1137
1224
|
}
|
|
1138
1225
|
|
|
1139
1226
|
interface PaginationEvent {
|
|
@@ -1405,6 +1492,11 @@ declare class DropdownComponent<T> implements OnDestroy {
|
|
|
1405
1492
|
private viewContainerRef;
|
|
1406
1493
|
private overlayRef;
|
|
1407
1494
|
private subscription;
|
|
1495
|
+
currentPosition: _angular_core.WritableSignal<{
|
|
1496
|
+
vertical: "top" | "bottom";
|
|
1497
|
+
horizontal: "start" | "end";
|
|
1498
|
+
direction: DropdownDirection;
|
|
1499
|
+
} | null>;
|
|
1408
1500
|
rowId: _angular_core.InputSignal<number>;
|
|
1409
1501
|
triggerElementId: _angular_core.InputSignal<string>;
|
|
1410
1502
|
extraDefaultActions: _angular_core.InputSignal<any[]>;
|
|
@@ -1431,6 +1523,7 @@ declare class DropdownComponent<T> implements OnDestroy {
|
|
|
1431
1523
|
constructor(overlay: Overlay, dropdownService: DropdownService);
|
|
1432
1524
|
ngOnDestroy(): void;
|
|
1433
1525
|
private showDropdown;
|
|
1526
|
+
private detectAndSetPosition;
|
|
1434
1527
|
closeDropdown(): void;
|
|
1435
1528
|
triggerAction(action: TableAction): void;
|
|
1436
1529
|
triggerCustomAction(action: CustomAction<T>): void;
|
|
@@ -3384,57 +3477,6 @@ declare class LayoutAuth {
|
|
|
3384
3477
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LayoutAuth, "core-layout-auth", never, { "config": { "alias": "config"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
3385
3478
|
}
|
|
3386
3479
|
|
|
3387
|
-
declare enum StepStatus {
|
|
3388
|
-
PENDING = "pending",
|
|
3389
|
-
ACTIVE = "active",
|
|
3390
|
-
COMPLETE = "complete"
|
|
3391
|
-
}
|
|
3392
|
-
|
|
3393
|
-
declare enum StepType {
|
|
3394
|
-
NUMBER = "number",
|
|
3395
|
-
TEXT = "text",
|
|
3396
|
-
ICON = "icon"
|
|
3397
|
-
}
|
|
3398
|
-
|
|
3399
|
-
declare enum StepSize {
|
|
3400
|
-
SMALL = "small",
|
|
3401
|
-
MEDIUM = "medium",
|
|
3402
|
-
LARGE = "large"
|
|
3403
|
-
}
|
|
3404
|
-
|
|
3405
|
-
interface StepItemConfig {
|
|
3406
|
-
id: string;
|
|
3407
|
-
title: string;
|
|
3408
|
-
status: StepStatus;
|
|
3409
|
-
type: StepType;
|
|
3410
|
-
content?: string | number;
|
|
3411
|
-
icon?: string;
|
|
3412
|
-
disabled?: boolean;
|
|
3413
|
-
clickable?: boolean;
|
|
3414
|
-
customClass?: string;
|
|
3415
|
-
tooltip?: string;
|
|
3416
|
-
data?: any;
|
|
3417
|
-
}
|
|
3418
|
-
|
|
3419
|
-
interface StepsConfig {
|
|
3420
|
-
steps: StepItemConfig[];
|
|
3421
|
-
activeStepId?: string;
|
|
3422
|
-
size?: StepSize;
|
|
3423
|
-
showConnectors?: boolean;
|
|
3424
|
-
clickable?: boolean;
|
|
3425
|
-
customClass?: string;
|
|
3426
|
-
colors?: {
|
|
3427
|
-
pending?: string;
|
|
3428
|
-
active?: string;
|
|
3429
|
-
complete?: string;
|
|
3430
|
-
connector?: string;
|
|
3431
|
-
};
|
|
3432
|
-
layout?: 'horizontal' | 'vertical';
|
|
3433
|
-
showLabels?: boolean;
|
|
3434
|
-
showNumbers?: boolean;
|
|
3435
|
-
onStepClick?: (step: StepItemConfig) => void;
|
|
3436
|
-
}
|
|
3437
|
-
|
|
3438
3480
|
interface StepClickEvent {
|
|
3439
3481
|
step: StepItemConfig;
|
|
3440
3482
|
stepIndex: number;
|
|
@@ -4694,6 +4736,29 @@ declare class DynamicFieldsHelper<T extends DataBaseModelInterface> implements D
|
|
|
4694
4736
|
private convertEmptyStringsToNull;
|
|
4695
4737
|
}
|
|
4696
4738
|
|
|
4739
|
+
type UruguayanDocumentInput = string | number;
|
|
4740
|
+
declare function transformUruguayanDocument(input: UruguayanDocumentInput): string;
|
|
4741
|
+
declare function getUruguayanDocumentValidationDigit(input: UruguayanDocumentInput): string;
|
|
4742
|
+
declare function validateUruguayanDocument(input: UruguayanDocumentInput): boolean;
|
|
4743
|
+
declare function generateRandomUruguayanDocument(): string;
|
|
4744
|
+
declare const transform: typeof transformUruguayanDocument;
|
|
4745
|
+
declare const validationDigit: typeof getUruguayanDocumentValidationDigit;
|
|
4746
|
+
declare const validateCi: typeof validateUruguayanDocument;
|
|
4747
|
+
declare const random: typeof generateRandomUruguayanDocument;
|
|
4748
|
+
declare const validate: typeof validateUruguayanDocument;
|
|
4749
|
+
declare const getValidationDigit: typeof getUruguayanDocumentValidationDigit;
|
|
4750
|
+
declare const getRandomCi: typeof generateRandomUruguayanDocument;
|
|
4751
|
+
declare const UruguayanDocumentValidationHelper: {
|
|
4752
|
+
transform: typeof transformUruguayanDocument;
|
|
4753
|
+
validationDigit: typeof getUruguayanDocumentValidationDigit;
|
|
4754
|
+
getValidationDigit: typeof getUruguayanDocumentValidationDigit;
|
|
4755
|
+
validateCi: typeof validateUruguayanDocument;
|
|
4756
|
+
validate: typeof validateUruguayanDocument;
|
|
4757
|
+
random: typeof generateRandomUruguayanDocument;
|
|
4758
|
+
getRandomCi: typeof generateRandomUruguayanDocument;
|
|
4759
|
+
};
|
|
4760
|
+
declare const uruguayanDocumentValidator: ValidatorFn;
|
|
4761
|
+
|
|
4697
4762
|
declare const VERSION: {
|
|
4698
4763
|
full: string;
|
|
4699
4764
|
major: number;
|
|
@@ -4703,5 +4768,5 @@ declare const VERSION: {
|
|
|
4703
4768
|
buildDate: string;
|
|
4704
4769
|
};
|
|
4705
4770
|
|
|
4706
|
-
export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, ManualRefreshService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsInterceptor, PermissionsResources, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, ResetPasswordModel, RoleModel, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UsersModel, VERSION, equalToValidator, isSameDate, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader };
|
|
4707
|
-
export type { ActiveFilterItem, ActiveFiltersConfig, AdditionalPermissionResources, AddressModel, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentItem, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, ModalButtonConfig, ModalFieldConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, TableActionConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem };
|
|
4771
|
+
export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, ManualRefreshService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsInterceptor, PermissionsResources, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, ResetPasswordModel, RoleModel, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, equalToValidator, generateRandomUruguayanDocument, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateCi, validateUruguayanDocument, validationDigit };
|
|
4772
|
+
export type { ActiveFilterItem, ActiveFiltersConfig, AdditionalPermissionResources, AddressModel, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentItem, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, ModalButtonConfig, ModalFieldConfig, ModalStepConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, TableActionConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem, UruguayanDocumentInput };
|