@solcre-org/core-ui 2.12.32 → 2.12.34
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 +8517 -8086
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +105 -56
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -142,7 +142,7 @@ interface ModalFieldConfig<T> {
|
|
|
142
142
|
duration?: number;
|
|
143
143
|
multiple?: boolean;
|
|
144
144
|
linkedFieldKey?: keyof T;
|
|
145
|
-
validators?: ValidatorFn[];
|
|
145
|
+
validators?: ValidatorFn[] | ((formValue: any) => ValidatorFn[]);
|
|
146
146
|
errorMessages?: {
|
|
147
147
|
[key: string]: string;
|
|
148
148
|
};
|
|
@@ -162,7 +162,8 @@ interface ModalFieldConfig<T> {
|
|
|
162
162
|
value: any;
|
|
163
163
|
label: string;
|
|
164
164
|
}[];
|
|
165
|
-
validators?: ValidatorFn[];
|
|
165
|
+
validators?: ValidatorFn[] | ((formValue: any) => ValidatorFn[]);
|
|
166
|
+
dynamicValue?: (formValue: any) => any;
|
|
166
167
|
errorMessages?: {
|
|
167
168
|
[key: string]: string;
|
|
168
169
|
};
|
|
@@ -196,6 +197,8 @@ declare abstract class BaseFieldComponent<T extends DataBaseModelInterface> {
|
|
|
196
197
|
ngOnInit(): void;
|
|
197
198
|
constructor();
|
|
198
199
|
protected initializeFormControl(): void;
|
|
200
|
+
protected getCurrentValidators(): ValidatorFn[];
|
|
201
|
+
protected getDynamicValue(): any;
|
|
199
202
|
private normalizeValue;
|
|
200
203
|
protected onBlur(event?: FocusEvent): void;
|
|
201
204
|
private isRealBlur;
|
|
@@ -299,6 +302,7 @@ declare class DatetimeFieldComponent<T extends DataBaseModelInterface> implement
|
|
|
299
302
|
label: string;
|
|
300
303
|
}[]>;
|
|
301
304
|
hasRequiredValidators: _angular_core.Signal<boolean>;
|
|
305
|
+
private getCurrentValidators;
|
|
302
306
|
formattedDate: _angular_core.Signal<string>;
|
|
303
307
|
isDisabled: _angular_core.Signal<boolean>;
|
|
304
308
|
hasError: _angular_core.Signal<boolean>;
|
|
@@ -744,6 +748,7 @@ declare class TimeFieldComponent<T extends DataBaseModelInterface> {
|
|
|
744
748
|
isDisabled: _angular_core.Signal<boolean>;
|
|
745
749
|
hasError: _angular_core.Signal<boolean>;
|
|
746
750
|
hasRequiredValidators: _angular_core.Signal<boolean>;
|
|
751
|
+
private getCurrentValidators;
|
|
747
752
|
private evaluateReadonly;
|
|
748
753
|
constructor();
|
|
749
754
|
private initializeFromValue;
|
|
@@ -787,6 +792,7 @@ declare class MultiEntryFieldComponent<T extends DataBaseModelInterface> impleme
|
|
|
787
792
|
canRemove: _angular_core.Signal<boolean>;
|
|
788
793
|
isDisabled: _angular_core.Signal<boolean>;
|
|
789
794
|
hasRequiredValidators: _angular_core.Signal<boolean>;
|
|
795
|
+
private getCurrentValidators;
|
|
790
796
|
constructor();
|
|
791
797
|
ngOnInit(): void;
|
|
792
798
|
private initializeEntries;
|
|
@@ -1010,6 +1016,39 @@ interface ModalTabConfig<T extends DataBaseModelInterface> {
|
|
|
1010
1016
|
icon?: string;
|
|
1011
1017
|
}
|
|
1012
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
|
+
|
|
1013
1052
|
interface ModalButtonConfig<T> {
|
|
1014
1053
|
text: string;
|
|
1015
1054
|
class?: string;
|
|
@@ -1039,6 +1078,31 @@ interface GenericTabConfig {
|
|
|
1039
1078
|
allowCustomTemplate?: boolean;
|
|
1040
1079
|
}
|
|
1041
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
|
+
|
|
1042
1106
|
declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
1043
1107
|
private elementRef;
|
|
1044
1108
|
private formBuilder;
|
|
@@ -1052,15 +1116,20 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1052
1116
|
data: _angular_core.InputSignal<T | null>;
|
|
1053
1117
|
fields: _angular_core.InputSignal<ModalFieldConfig<T>[]>;
|
|
1054
1118
|
tabs: _angular_core.InputSignal<ModalTabConfig<T>[]>;
|
|
1119
|
+
steps: _angular_core.InputSignal<ModalStepConfig<T>[]>;
|
|
1055
1120
|
title: _angular_core.InputSignal<string>;
|
|
1056
1121
|
isMultiple: _angular_core.InputSignal<boolean | undefined>;
|
|
1057
1122
|
customTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1058
1123
|
customViewTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1124
|
+
finalStepTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1059
1125
|
buttonConfig: _angular_core.InputSignal<ModalButtonConfig<T>[]>;
|
|
1060
1126
|
modelFactory: _angular_core.InputSignal<((data: Partial<T>) => T) | null>;
|
|
1061
1127
|
errors: _angular_core.InputSignal<string[]>;
|
|
1062
1128
|
validators: _angular_core.InputSignal<((data: T) => string[])[]>;
|
|
1063
1129
|
customHasChanges: _angular_core.InputSignal<boolean>;
|
|
1130
|
+
stepValidationEnabled: _angular_core.InputSignal<boolean>;
|
|
1131
|
+
allowFreeNavigation: _angular_core.InputSignal<boolean>;
|
|
1132
|
+
autoMarkCompleted: _angular_core.InputSignal<boolean>;
|
|
1064
1133
|
save: _angular_core.OutputEmitterRef<T>;
|
|
1065
1134
|
close: _angular_core.OutputEmitterRef<void>;
|
|
1066
1135
|
modalData: _angular_core.OutputEmitterRef<T>;
|
|
@@ -1072,11 +1141,15 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1072
1141
|
isInitialized: _angular_core.WritableSignal<boolean>;
|
|
1073
1142
|
form: _angular_core.WritableSignal<FormGroup<any>>;
|
|
1074
1143
|
activeTabId: _angular_core.WritableSignal<string>;
|
|
1144
|
+
activeStepId: _angular_core.WritableSignal<string>;
|
|
1075
1145
|
originalData: _angular_core.WritableSignal<T | null>;
|
|
1076
1146
|
hasUnsavedChanges: _angular_core.WritableSignal<boolean>;
|
|
1077
1147
|
hasTabs: _angular_core.Signal<boolean>;
|
|
1148
|
+
hasSteps: _angular_core.Signal<boolean>;
|
|
1078
1149
|
allFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1079
1150
|
activeTabFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1151
|
+
activeStepFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1152
|
+
currentFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1080
1153
|
visibleFieldsForView: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
1081
1154
|
dataListItems: _angular_core.Signal<{
|
|
1082
1155
|
key: string;
|
|
@@ -1086,19 +1159,33 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1086
1159
|
visible: boolean;
|
|
1087
1160
|
}[]>;
|
|
1088
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>;
|
|
1089
1173
|
hasErrors: _angular_core.Signal<boolean>;
|
|
1090
1174
|
genericTabsConfig: _angular_core.Signal<GenericTabConfig>;
|
|
1091
1175
|
closeButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1092
1176
|
defaultCancelButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1093
1177
|
defaultSaveButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1178
|
+
prevStepButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1179
|
+
nextStepButtonConfig: _angular_core.Signal<ButtonConfig>;
|
|
1094
1180
|
hasTabErrorsFunction: (tabId: string) => boolean;
|
|
1095
1181
|
getCustomButtonConfig(button: ModalButtonConfig<T>): ButtonConfig;
|
|
1096
1182
|
private getButtonTypeFromClass;
|
|
1097
1183
|
onCustomButtonClick(button: ModalButtonConfig<T>): void;
|
|
1098
1184
|
constructor();
|
|
1099
1185
|
private initializeData;
|
|
1100
|
-
private
|
|
1186
|
+
private initializeActiveTabAndStep;
|
|
1101
1187
|
private validateField;
|
|
1188
|
+
private mapDynamicValidatorErrors;
|
|
1102
1189
|
onFieldValueChange(fieldKey: keyof T, newValue: any): void;
|
|
1103
1190
|
onSelectionChange(event: {
|
|
1104
1191
|
selectedItem: any;
|
|
@@ -1106,7 +1193,9 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1106
1193
|
}): void;
|
|
1107
1194
|
updateField(fieldKey: keyof T, value: any): void;
|
|
1108
1195
|
validateAllFields(): void;
|
|
1196
|
+
validateCurrentStepFields(): void;
|
|
1109
1197
|
getFieldErrors(fieldKey: keyof T): string[];
|
|
1198
|
+
getStepErrors(step: ModalStepConfig<T>): string[];
|
|
1110
1199
|
getFormattedValue(field: ModalFieldConfig<T>, value: any): string;
|
|
1111
1200
|
hasCustomViewTemplate(field: ModalFieldConfig<T>): boolean;
|
|
1112
1201
|
isTemplateRef(template: any): template is TemplateRef<any>;
|
|
@@ -1124,10 +1213,14 @@ declare class GenericModalComponent<T extends DataBaseModelInterface> {
|
|
|
1124
1213
|
onBlurEvent(fieldKey: keyof T): void;
|
|
1125
1214
|
onTabChange(tabId: string): void;
|
|
1126
1215
|
onGenericTabChange(tab: GenericTab): void;
|
|
1216
|
+
onStepChange(stepId: string): void;
|
|
1217
|
+
goToPreviousStep(): void;
|
|
1218
|
+
goToNextStep(): void;
|
|
1127
1219
|
hasTabErrors(tabId: string): boolean;
|
|
1220
|
+
hasStepErrors: (stepId: string) => boolean;
|
|
1128
1221
|
private detectFormChanges;
|
|
1129
1222
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericModalComponent<any>, never>;
|
|
1130
|
-
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: {}; }]>;
|
|
1131
1224
|
}
|
|
1132
1225
|
|
|
1133
1226
|
interface PaginationEvent {
|
|
@@ -1399,6 +1492,11 @@ declare class DropdownComponent<T> implements OnDestroy {
|
|
|
1399
1492
|
private viewContainerRef;
|
|
1400
1493
|
private overlayRef;
|
|
1401
1494
|
private subscription;
|
|
1495
|
+
currentPosition: _angular_core.WritableSignal<{
|
|
1496
|
+
vertical: "top" | "bottom";
|
|
1497
|
+
horizontal: "start" | "end";
|
|
1498
|
+
direction: DropdownDirection;
|
|
1499
|
+
} | null>;
|
|
1402
1500
|
rowId: _angular_core.InputSignal<number>;
|
|
1403
1501
|
triggerElementId: _angular_core.InputSignal<string>;
|
|
1404
1502
|
extraDefaultActions: _angular_core.InputSignal<any[]>;
|
|
@@ -1425,6 +1523,7 @@ declare class DropdownComponent<T> implements OnDestroy {
|
|
|
1425
1523
|
constructor(overlay: Overlay, dropdownService: DropdownService);
|
|
1426
1524
|
ngOnDestroy(): void;
|
|
1427
1525
|
private showDropdown;
|
|
1526
|
+
private detectAndSetPosition;
|
|
1428
1527
|
closeDropdown(): void;
|
|
1429
1528
|
triggerAction(action: TableAction): void;
|
|
1430
1529
|
triggerCustomAction(action: CustomAction<T>): void;
|
|
@@ -1982,6 +2081,7 @@ declare class InlineEditService<T extends DataBaseModelInterface & {
|
|
|
1982
2081
|
onCellValueChange(row: T, column: ColumnConfig<T>, value: any): void;
|
|
1983
2082
|
private normalizeValue;
|
|
1984
2083
|
private validateCellValue;
|
|
2084
|
+
private resolveValidators;
|
|
1985
2085
|
getCellErrors(row: T, column: ColumnConfig<T>): string[];
|
|
1986
2086
|
private performInlineEdit;
|
|
1987
2087
|
getInlineEditableConfig(column: ColumnConfig<T>): ModalFieldConfig<T> | undefined;
|
|
@@ -3377,57 +3477,6 @@ declare class LayoutAuth {
|
|
|
3377
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: {}; }]>;
|
|
3378
3478
|
}
|
|
3379
3479
|
|
|
3380
|
-
declare enum StepStatus {
|
|
3381
|
-
PENDING = "pending",
|
|
3382
|
-
ACTIVE = "active",
|
|
3383
|
-
COMPLETE = "complete"
|
|
3384
|
-
}
|
|
3385
|
-
|
|
3386
|
-
declare enum StepType {
|
|
3387
|
-
NUMBER = "number",
|
|
3388
|
-
TEXT = "text",
|
|
3389
|
-
ICON = "icon"
|
|
3390
|
-
}
|
|
3391
|
-
|
|
3392
|
-
declare enum StepSize {
|
|
3393
|
-
SMALL = "small",
|
|
3394
|
-
MEDIUM = "medium",
|
|
3395
|
-
LARGE = "large"
|
|
3396
|
-
}
|
|
3397
|
-
|
|
3398
|
-
interface StepItemConfig {
|
|
3399
|
-
id: string;
|
|
3400
|
-
title: string;
|
|
3401
|
-
status: StepStatus;
|
|
3402
|
-
type: StepType;
|
|
3403
|
-
content?: string | number;
|
|
3404
|
-
icon?: string;
|
|
3405
|
-
disabled?: boolean;
|
|
3406
|
-
clickable?: boolean;
|
|
3407
|
-
customClass?: string;
|
|
3408
|
-
tooltip?: string;
|
|
3409
|
-
data?: any;
|
|
3410
|
-
}
|
|
3411
|
-
|
|
3412
|
-
interface StepsConfig {
|
|
3413
|
-
steps: StepItemConfig[];
|
|
3414
|
-
activeStepId?: string;
|
|
3415
|
-
size?: StepSize;
|
|
3416
|
-
showConnectors?: boolean;
|
|
3417
|
-
clickable?: boolean;
|
|
3418
|
-
customClass?: string;
|
|
3419
|
-
colors?: {
|
|
3420
|
-
pending?: string;
|
|
3421
|
-
active?: string;
|
|
3422
|
-
complete?: string;
|
|
3423
|
-
connector?: string;
|
|
3424
|
-
};
|
|
3425
|
-
layout?: 'horizontal' | 'vertical';
|
|
3426
|
-
showLabels?: boolean;
|
|
3427
|
-
showNumbers?: boolean;
|
|
3428
|
-
onStepClick?: (step: StepItemConfig) => void;
|
|
3429
|
-
}
|
|
3430
|
-
|
|
3431
3480
|
interface StepClickEvent {
|
|
3432
3481
|
step: StepItemConfig;
|
|
3433
3482
|
stepIndex: number;
|
|
@@ -4697,4 +4746,4 @@ declare const VERSION: {
|
|
|
4697
4746
|
};
|
|
4698
4747
|
|
|
4699
4748
|
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 };
|
|
4700
|
-
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 };
|
|
4749
|
+
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 };
|