@solcre-org/core-ui 2.18.2 → 2.18.4
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/solcre-org-core-ui.mjs +267 -46
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +52 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ declare enum FieldType {
|
|
|
77
77
|
CHECKBOX = "checkbox",
|
|
78
78
|
SELECT = "select",
|
|
79
79
|
DATE = "date",
|
|
80
|
+
DATERANGE = "daterange",
|
|
80
81
|
DATETIME = "datetime",
|
|
81
82
|
TIME = "time",
|
|
82
83
|
PASSWORD = "password",
|
|
@@ -130,7 +131,7 @@ interface ModalFieldConfig<T> {
|
|
|
130
131
|
keyToPayload?: string;
|
|
131
132
|
label: string;
|
|
132
133
|
placeholder?: string;
|
|
133
|
-
type: FieldType.TEXT | FieldType.NUMBER | FieldType.CHECKBOX | FieldType.SELECT | FieldType.TEXTAREA | FieldType.DATE | FieldType.DATETIME | FieldType.TIME | FieldType.PASSWORD | FieldType.SWITCH | FieldType.SERVER_SELECT | FieldType.FILE | FieldType.PHONE | FieldType.DOCUMENT;
|
|
134
|
+
type: FieldType.TEXT | FieldType.NUMBER | FieldType.CHECKBOX | FieldType.SELECT | FieldType.TEXTAREA | FieldType.DATE | FieldType.DATETIME | FieldType.TIME | FieldType.PASSWORD | FieldType.SWITCH | FieldType.SERVER_SELECT | FieldType.FILE | FieldType.PHONE | FieldType.DOCUMENT | FieldType.COLOR | FieldType.DATERANGE;
|
|
134
135
|
options?: {
|
|
135
136
|
value: any;
|
|
136
137
|
label: string;
|
|
@@ -301,6 +302,37 @@ declare class DateFieldComponent<T extends DataBaseModelInterface> extends BaseF
|
|
|
301
302
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateFieldComponent<any>, "core-date-field", never, {}, {}, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
302
303
|
}
|
|
303
304
|
|
|
305
|
+
declare class DateRangeFieldComponent<T extends DataBaseModelInterface> extends BaseFieldComponent<T> implements AfterViewInit, OnDestroy {
|
|
306
|
+
private elementRef;
|
|
307
|
+
private isStartPickerOpen;
|
|
308
|
+
private isEndPickerOpen;
|
|
309
|
+
startDateControl: _angular_core.WritableSignal<FormControl<string | null>>;
|
|
310
|
+
endDateControl: _angular_core.WritableSignal<FormControl<string | null>>;
|
|
311
|
+
private startDateValue;
|
|
312
|
+
private endDateValue;
|
|
313
|
+
minDate: _angular_core.Signal<string | null>;
|
|
314
|
+
maxDate: _angular_core.Signal<string | null>;
|
|
315
|
+
endMinDate: _angular_core.Signal<string | null>;
|
|
316
|
+
startMaxDate: _angular_core.Signal<string | null>;
|
|
317
|
+
startDateLabel: _angular_core.Signal<string>;
|
|
318
|
+
endDateLabel: _angular_core.Signal<string>;
|
|
319
|
+
constructor(elementRef: ElementRef);
|
|
320
|
+
protected initializeFormControl(): void;
|
|
321
|
+
private formatDateValue;
|
|
322
|
+
private emitValueChange;
|
|
323
|
+
ngAfterViewInit(): void;
|
|
324
|
+
ngOnDestroy(): void;
|
|
325
|
+
private initializeDateInputs;
|
|
326
|
+
private removeDateInputListeners;
|
|
327
|
+
private showDatePicker;
|
|
328
|
+
private updateHasValue;
|
|
329
|
+
onBlurInput(): void;
|
|
330
|
+
onStartCalendarClick(event: Event): void;
|
|
331
|
+
onEndCalendarClick(event: Event): void;
|
|
332
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DateRangeFieldComponent<any>, never>;
|
|
333
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateRangeFieldComponent<any>, "core-daterange-field", never, {}, {}, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
334
|
+
}
|
|
335
|
+
|
|
304
336
|
declare class DatetimeFieldComponent<T extends DataBaseModelInterface> implements OnInit {
|
|
305
337
|
field: _angular_core.InputSignal<ModalFieldConfig<T>>;
|
|
306
338
|
value: _angular_core.InputSignal<Date | null>;
|
|
@@ -3252,6 +3284,22 @@ interface DateModalFieldConfig<T> extends ModalFieldConfig<T> {
|
|
|
3252
3284
|
dateConfig?: DateFieldConfig;
|
|
3253
3285
|
}
|
|
3254
3286
|
|
|
3287
|
+
interface DateRangeValue {
|
|
3288
|
+
startDate: string | null;
|
|
3289
|
+
endDate: string | null;
|
|
3290
|
+
}
|
|
3291
|
+
interface DateRangeFieldConfig<T extends DataBaseModelInterface = DataBaseModelInterface> extends ModalFieldConfig<T> {
|
|
3292
|
+
dateRangeConfig?: {
|
|
3293
|
+
allowPastDates?: boolean;
|
|
3294
|
+
allowFutureDates?: boolean;
|
|
3295
|
+
minDate?: string;
|
|
3296
|
+
maxDate?: string;
|
|
3297
|
+
startDateLabel?: string;
|
|
3298
|
+
endDateLabel?: string;
|
|
3299
|
+
separator?: string;
|
|
3300
|
+
};
|
|
3301
|
+
}
|
|
3302
|
+
|
|
3255
3303
|
interface SwitchFieldConfig {
|
|
3256
3304
|
label?: string;
|
|
3257
3305
|
labelOff?: string;
|
|
@@ -5689,7 +5737,7 @@ declare const VERSION: {
|
|
|
5689
5737
|
|
|
5690
5738
|
declare class DynamicFieldDirective<T extends DataBaseModelInterface> implements OnChanges {
|
|
5691
5739
|
private viewContainerRef;
|
|
5692
|
-
field: _angular_core.InputSignal<ModalFieldConfig<T> | CheckboxModalFieldConfig<T> | NumberModalFieldConfig<T> | SwitchModalFieldConfig<T> | SelectServerSideConfig<T> | SelectFieldConfig<T> | PhoneModalFieldConfig<T> | FilterConfig<T> | (ModalFieldConfig<T> & {
|
|
5740
|
+
field: _angular_core.InputSignal<ModalFieldConfig<T> | CheckboxModalFieldConfig<T> | NumberModalFieldConfig<T> | SwitchModalFieldConfig<T> | SelectServerSideConfig<T> | SelectFieldConfig<T> | PhoneModalFieldConfig<T> | DateRangeFieldConfig<T> | FilterConfig<T> | (ModalFieldConfig<T> & {
|
|
5693
5741
|
config?: TimeFieldConfig;
|
|
5694
5742
|
})>;
|
|
5695
5743
|
value: _angular_core.InputSignal<any>;
|
|
@@ -6190,5 +6238,5 @@ declare const AgeValidationHelper: {
|
|
|
6190
6238
|
|
|
6191
6239
|
declare const ageValidator: (minimumAge: number) => ValidatorFn;
|
|
6192
6240
|
|
|
6193
|
-
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 };
|
|
6194
|
-
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 };
|
|
6241
|
+
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, DateRangeFieldComponent, 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 };
|
|
6242
|
+
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, DateRangeFieldConfig, DateRangeValue, 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 };
|