@solcre-org/core-ui 2.17.0 → 2.17.2
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/index.d.ts
CHANGED
|
@@ -84,7 +84,8 @@ declare enum FieldType {
|
|
|
84
84
|
SERVER_SELECT = "server-select",
|
|
85
85
|
FILE = "file",
|
|
86
86
|
PHONE = "phone",
|
|
87
|
-
DOCUMENT = "document"
|
|
87
|
+
DOCUMENT = "document",
|
|
88
|
+
COLOR = "color"
|
|
88
89
|
}
|
|
89
90
|
declare enum NumberFieldType {
|
|
90
91
|
DEFAULT = "default",
|
|
@@ -263,6 +264,24 @@ declare class CheckboxFieldComponent<T extends DataBaseModelInterface> extends B
|
|
|
263
264
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CheckboxFieldComponent<any>, "core-checkbox-field", never, {}, {}, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
264
265
|
}
|
|
265
266
|
|
|
267
|
+
declare class ColorPickerFieldComponent<T extends DataBaseModelInterface> extends BaseFieldComponent<T> {
|
|
268
|
+
isPickerOpen: _angular_core.WritableSignal<boolean>;
|
|
269
|
+
presetColors: _angular_core.WritableSignal<string[]>;
|
|
270
|
+
constructor();
|
|
271
|
+
isDisabled(): boolean;
|
|
272
|
+
togglePicker(): void;
|
|
273
|
+
closePicker(): void;
|
|
274
|
+
selectColor(color: string): void;
|
|
275
|
+
onColorInputChange(event: Event): void;
|
|
276
|
+
onTextInputChange(event: Event): void;
|
|
277
|
+
isValidHexColor(color: string): boolean;
|
|
278
|
+
getCurrentColor(): string;
|
|
279
|
+
onBlurInput(event?: FocusEvent): void;
|
|
280
|
+
handleEnterKey(event: Event): void;
|
|
281
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ColorPickerFieldComponent<any>, never>;
|
|
282
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ColorPickerFieldComponent<any>, "core-color-picker-field", never, {}, {}, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
283
|
+
}
|
|
284
|
+
|
|
266
285
|
declare class DateFieldComponent<T extends DataBaseModelInterface> extends BaseFieldComponent<T> implements AfterViewInit, OnDestroy {
|
|
267
286
|
private elementRef;
|
|
268
287
|
private isPickerOpen;
|
|
@@ -3108,6 +3127,7 @@ interface DocumentConfig {
|
|
|
3108
3127
|
customDateFormat?: string;
|
|
3109
3128
|
emptyStateMessage?: string;
|
|
3110
3129
|
emptyStateIcon?: string;
|
|
3130
|
+
showUploadButton?: boolean;
|
|
3111
3131
|
}
|
|
3112
3132
|
|
|
3113
3133
|
declare class GenericDocumentationComponent implements OnInit, OnDestroy {
|
|
@@ -5515,6 +5535,7 @@ interface HolidaySets {
|
|
|
5515
5535
|
holidayNames?: Map<string, string>;
|
|
5516
5536
|
}
|
|
5517
5537
|
|
|
5538
|
+
type SchedulerViewMode = 'day' | 'week' | 'month';
|
|
5518
5539
|
interface SchedulerConfig {
|
|
5519
5540
|
startHour: number;
|
|
5520
5541
|
endHour: number;
|
|
@@ -5522,6 +5543,14 @@ interface SchedulerConfig {
|
|
|
5522
5543
|
rowHeightRem: number;
|
|
5523
5544
|
showCurrentTimeLine: boolean;
|
|
5524
5545
|
locale?: string;
|
|
5546
|
+
viewMode?: SchedulerViewMode;
|
|
5547
|
+
}
|
|
5548
|
+
interface SchedulerWeekDay {
|
|
5549
|
+
date: Date;
|
|
5550
|
+
dayNumber: number;
|
|
5551
|
+
dayName: string;
|
|
5552
|
+
isToday: boolean;
|
|
5553
|
+
isWeekend: boolean;
|
|
5525
5554
|
}
|
|
5526
5555
|
interface SlotClickEvent {
|
|
5527
5556
|
columnId: string;
|
|
@@ -5553,6 +5582,10 @@ declare class GenericSchedulerComponent implements OnInit, OnDestroy {
|
|
|
5553
5582
|
disabledSlotLabel: _angular_core.InputSignal<string>;
|
|
5554
5583
|
todayLabel: _angular_core.InputSignal<string>;
|
|
5555
5584
|
locale: _angular_core.InputSignal<string>;
|
|
5585
|
+
weekLabel: _angular_core.InputSignal<string>;
|
|
5586
|
+
dayLabel: _angular_core.InputSignal<string>;
|
|
5587
|
+
monthLabel: _angular_core.InputSignal<string>;
|
|
5588
|
+
disabledDates: _angular_core.InputSignal<string[]>;
|
|
5556
5589
|
slotClick: _angular_core.OutputEmitterRef<SlotClickEvent>;
|
|
5557
5590
|
eventClick: _angular_core.OutputEmitterRef<EventClickEvent>;
|
|
5558
5591
|
eventHover: _angular_core.OutputEmitterRef<EventHoverEvent>;
|
|
@@ -5560,8 +5593,14 @@ declare class GenericSchedulerComponent implements OnInit, OnDestroy {
|
|
|
5560
5593
|
todayClick: _angular_core.OutputEmitterRef<void>;
|
|
5561
5594
|
previousDay: _angular_core.OutputEmitterRef<Date>;
|
|
5562
5595
|
nextDay: _angular_core.OutputEmitterRef<Date>;
|
|
5596
|
+
previousWeek: _angular_core.OutputEmitterRef<Date>;
|
|
5597
|
+
nextWeek: _angular_core.OutputEmitterRef<Date>;
|
|
5598
|
+
previousMonth: _angular_core.OutputEmitterRef<Date>;
|
|
5599
|
+
nextMonth: _angular_core.OutputEmitterRef<Date>;
|
|
5600
|
+
viewModeChange: _angular_core.OutputEmitterRef<SchedulerViewMode>;
|
|
5563
5601
|
timeSlots: _angular_core.WritableSignal<TimeSlot[]>;
|
|
5564
5602
|
currentTime: _angular_core.WritableSignal<Date>;
|
|
5603
|
+
expandedDay: _angular_core.WritableSignal<Date | null>;
|
|
5565
5604
|
private timeUpdateInterval;
|
|
5566
5605
|
mergedConfig: _angular_core.Signal<{
|
|
5567
5606
|
startHour: number;
|
|
@@ -5570,10 +5609,15 @@ declare class GenericSchedulerComponent implements OnInit, OnDestroy {
|
|
|
5570
5609
|
rowHeightRem: number;
|
|
5571
5610
|
showCurrentTimeLine: boolean;
|
|
5572
5611
|
locale?: string;
|
|
5612
|
+
viewMode?: SchedulerViewMode;
|
|
5573
5613
|
}>;
|
|
5614
|
+
viewMode: _angular_core.Signal<SchedulerViewMode>;
|
|
5615
|
+
weekDays: _angular_core.Signal<SchedulerWeekDay[]>;
|
|
5616
|
+
monthDays: _angular_core.Signal<SchedulerWeekDay[]>;
|
|
5574
5617
|
isToday: _angular_core.Signal<boolean>;
|
|
5575
5618
|
formattedDate: _angular_core.Signal<string>;
|
|
5576
5619
|
currentTimePosition: _angular_core.Signal<number | null>;
|
|
5620
|
+
currentTimeDayIndex: _angular_core.Signal<number>;
|
|
5577
5621
|
private eventMap;
|
|
5578
5622
|
ngOnInit(): void;
|
|
5579
5623
|
ngOnDestroy(): void;
|
|
@@ -5594,8 +5638,30 @@ declare class GenericSchedulerComponent implements OnInit, OnDestroy {
|
|
|
5594
5638
|
onTodayClick(): void;
|
|
5595
5639
|
onPreviousDay(): void;
|
|
5596
5640
|
onNextDay(): void;
|
|
5641
|
+
onPreviousWeek(): void;
|
|
5642
|
+
onNextWeek(): void;
|
|
5643
|
+
onPreviousMonth(): void;
|
|
5644
|
+
onNextMonth(): void;
|
|
5645
|
+
onPrevious(): void;
|
|
5646
|
+
onNext(): void;
|
|
5647
|
+
toggleViewMode(): void;
|
|
5648
|
+
setViewMode(mode: SchedulerViewMode): void;
|
|
5649
|
+
getEventsForDay(dayDate: Date): CalendarEvent[];
|
|
5650
|
+
isSlotOccupiedForDay(dayDate: Date, slot: TimeSlot): boolean;
|
|
5651
|
+
shouldShowEventForDay(dayDate: Date, slot: TimeSlot): boolean;
|
|
5652
|
+
getEventForDaySlot(dayDate: Date, slot: TimeSlot): CalendarEvent | undefined;
|
|
5653
|
+
isDayDisabled(dayDate: Date): boolean;
|
|
5654
|
+
isSlotDisabledForDay(dayDate: Date, slot: TimeSlot): boolean;
|
|
5655
|
+
onWeekSlotClick(dayDate: Date, slot: TimeSlot): void;
|
|
5656
|
+
onWeekEventClick(event: CalendarEvent, dayDate: Date): void;
|
|
5657
|
+
onMonthDayClick(dayDate: Date): void;
|
|
5658
|
+
onMonthEventClick(event: CalendarEvent, dayDate: Date): void;
|
|
5659
|
+
openDayPopover(dayDate: Date, event: Event): void;
|
|
5660
|
+
closeDayPopover(): void;
|
|
5661
|
+
getExpandedDayEvents(): CalendarEvent[];
|
|
5662
|
+
getExpandedDayLabel(): string;
|
|
5597
5663
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericSchedulerComponent, never>;
|
|
5598
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericSchedulerComponent, "core-generic-scheduler", never, { "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "events": { "alias": "events"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "showTimeColumn": { "alias": "showTimeColumn"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "timeColumnLabel": { "alias": "timeColumnLabel"; "required": false; "isSignal": true; }; "emptySlotLabel": { "alias": "emptySlotLabel"; "required": false; "isSignal": true; }; "disabledSlotLabel": { "alias": "disabledSlotLabel"; "required": false; "isSignal": true; }; "todayLabel": { "alias": "todayLabel"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; }, { "slotClick": "slotClick"; "eventClick": "eventClick"; "eventHover": "eventHover"; "eventLeave": "eventLeave"; "todayClick": "todayClick"; "previousDay": "previousDay"; "nextDay": "nextDay"; }, never, never, true, never>;
|
|
5664
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericSchedulerComponent, "core-generic-scheduler", never, { "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "events": { "alias": "events"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "showTimeColumn": { "alias": "showTimeColumn"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "timeColumnLabel": { "alias": "timeColumnLabel"; "required": false; "isSignal": true; }; "emptySlotLabel": { "alias": "emptySlotLabel"; "required": false; "isSignal": true; }; "disabledSlotLabel": { "alias": "disabledSlotLabel"; "required": false; "isSignal": true; }; "todayLabel": { "alias": "todayLabel"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "weekLabel": { "alias": "weekLabel"; "required": false; "isSignal": true; }; "dayLabel": { "alias": "dayLabel"; "required": false; "isSignal": true; }; "monthLabel": { "alias": "monthLabel"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; }, { "slotClick": "slotClick"; "eventClick": "eventClick"; "eventHover": "eventHover"; "eventLeave": "eventLeave"; "todayClick": "todayClick"; "previousDay": "previousDay"; "nextDay": "nextDay"; "previousWeek": "previousWeek"; "nextWeek": "nextWeek"; "previousMonth": "previousMonth"; "nextMonth": "nextMonth"; "viewModeChange": "viewModeChange"; }, never, never, true, never>;
|
|
5599
5665
|
}
|
|
5600
5666
|
|
|
5601
5667
|
declare const DEFAULT_COUNTRIES: CountryOption[];
|
|
@@ -6115,5 +6181,5 @@ declare const AgeValidationHelper: {
|
|
|
6115
6181
|
|
|
6116
6182
|
declare const ageValidator: (minimumAge: number) => ValidatorFn;
|
|
6117
6183
|
|
|
6118
|
-
export { AD_AUTH_CONFIG, AD_AUTH_INTERCEPTOR_CONFIG, ALL_COUNTRY_CODES, ActiveFiltersComponent, AdAuthService, AdInteractionType, AdLoginButtonComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CalendarEventType, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_AD_AUTH_INTERCEPTOR_CONFIG, DEFAULT_COUNTRIES, DEFAULT_SCHEDULER_CONFIG, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DayState, DayType, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericCalendarComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSchedulerComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MODEL_REFERENCE_SORT_KEY, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsCustomActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, RedirectUrlService, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, 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, TableFixedActionsService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, WeekDay, adAuthGuard, adAuthInterceptor, adGuestGuard, adRoleGuard, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideAdAuth, provideAdAuthInterceptor, provideAdAuthWithInterceptor, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
|
|
6119
|
-
export type { ActiveFilterItem, ActiveFiltersConfig, AdAuthConfig, AdAuthEvent, AdAuthInterceptorConfig, AdAuthState, AdAuthUser, AdAuthorizationCodeResponse, AdLoginButtonConfig, AdditionalPermissionResources, AddressModel, AgeComparisonMode, AgeValidationInput, AgeValidationOptions, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CalendarConfig, CalendarDay, CalendarEvent, CalendarHoliday, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CountryOption, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DateNavigationEvent, DateSelectionEvent, DocumentActionEvent, DocumentConfig, DocumentFieldConfig, DocumentFieldValue, DocumentItem, DocumentOption, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, EventClickEvent, EventHoverEvent, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, FixedActionConfig, FixedActionsConfig, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, HolidaySets, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, MobileBreakpointConfig, MobileHeaderConfig, MobileModalData, ModalButtonConfig, ModalFieldConfig, ModalStepConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NavUserConfig, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PhoneFieldConfig, PhoneModalFieldConfig, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SchedulerColumn, SchedulerConfig, SchedulerTimeSlot, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SlotClickEvent, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, SwitchOption, TableActionConfig, TableFixedActionsConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimeSlot, TimelineConfig, TimelineItem, UruguayanDocumentInput };
|
|
6184
|
+
export { AD_AUTH_CONFIG, AD_AUTH_INTERCEPTOR_CONFIG, ALL_COUNTRY_CODES, ActiveFiltersComponent, AdAuthService, AdInteractionType, AdLoginButtonComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CalendarEventType, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ColorPickerFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_AD_AUTH_INTERCEPTOR_CONFIG, DEFAULT_COUNTRIES, DEFAULT_SCHEDULER_CONFIG, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DayState, DayType, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericCalendarComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSchedulerComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MODEL_REFERENCE_SORT_KEY, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsCustomActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, RedirectUrlService, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, 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, TableFixedActionsService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, WeekDay, adAuthGuard, adAuthInterceptor, adGuestGuard, adRoleGuard, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideAdAuth, provideAdAuthInterceptor, provideAdAuthWithInterceptor, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
|
|
6185
|
+
export type { ActiveFilterItem, ActiveFiltersConfig, AdAuthConfig, AdAuthEvent, AdAuthInterceptorConfig, AdAuthState, AdAuthUser, AdAuthorizationCodeResponse, AdLoginButtonConfig, AdditionalPermissionResources, AddressModel, AgeComparisonMode, AgeValidationInput, AgeValidationOptions, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CalendarConfig, CalendarDay, CalendarEvent, CalendarHoliday, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CountryOption, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DateNavigationEvent, DateSelectionEvent, DocumentActionEvent, DocumentConfig, DocumentFieldConfig, DocumentFieldValue, DocumentItem, DocumentOption, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, EventClickEvent, EventHoverEvent, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, FixedActionConfig, FixedActionsConfig, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, HolidaySets, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, MobileBreakpointConfig, MobileHeaderConfig, MobileModalData, ModalButtonConfig, ModalFieldConfig, ModalStepConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NavUserConfig, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PhoneFieldConfig, PhoneModalFieldConfig, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SchedulerColumn, SchedulerConfig, SchedulerTimeSlot, SchedulerViewMode, SchedulerWeekDay, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SlotClickEvent, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, SwitchOption, TableActionConfig, TableFixedActionsConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimeSlot, TimelineConfig, TimelineItem, UruguayanDocumentInput };
|