@solcre-org/core-ui 2.11.11 → 2.11.13

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.
@@ -9269,6 +9269,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
9269
9269
  args: ['window:resize', ['$event']]
9270
9270
  }] } });
9271
9271
 
9272
+ class SidebarCustomModalComponent {
9273
+ modalService = inject(SidebarCustomModalService);
9274
+ dynamicComponent;
9275
+ ngOnInit() {
9276
+ setTimeout(() => {
9277
+ this.modalService.setViewContainerRef(this.dynamicComponent);
9278
+ });
9279
+ }
9280
+ ngOnDestroy() {
9281
+ this.modalService.closeModal();
9282
+ }
9283
+ getCurrentConfig() {
9284
+ return this.modalService.getCurrentConfig()();
9285
+ }
9286
+ getModalClasses() {
9287
+ const config = this.getCurrentConfig();
9288
+ const classes = [];
9289
+ if (config?.customClass) {
9290
+ classes.push(config.customClass);
9291
+ }
9292
+ return classes.join(' ');
9293
+ }
9294
+ onBackdropClick(event) {
9295
+ this.modalService.onBackdropClick();
9296
+ }
9297
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SidebarCustomModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9298
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: SidebarCustomModalComponent, isStandalone: true, selector: "core-sidebar-custom-modal", viewQueries: [{ propertyName: "dynamicComponent", first: true, predicate: ["dynamicComponent"], descendants: true, read: ViewContainerRef }], ngImport: i0, template: `
9299
+ @if(modalService.getIsOpen()()) {
9300
+ <ng-container #dynamicComponent></ng-container>
9301
+
9302
+ @if(getCurrentConfig()?.template) {
9303
+ <ng-container
9304
+ *ngTemplateOutlet="getCurrentConfig()!.template!; context: { $implicit: getCurrentConfig()?.data }">
9305
+ </ng-container>
9306
+ }
9307
+ }
9308
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
9309
+ }
9310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SidebarCustomModalComponent, decorators: [{
9311
+ type: Component,
9312
+ args: [{
9313
+ selector: 'core-sidebar-custom-modal',
9314
+ standalone: true,
9315
+ imports: [CommonModule],
9316
+ template: `
9317
+ @if(modalService.getIsOpen()()) {
9318
+ <ng-container #dynamicComponent></ng-container>
9319
+
9320
+ @if(getCurrentConfig()?.template) {
9321
+ <ng-container
9322
+ *ngTemplateOutlet="getCurrentConfig()!.template!; context: { $implicit: getCurrentConfig()?.data }">
9323
+ </ng-container>
9324
+ }
9325
+ }
9326
+ `,
9327
+ }]
9328
+ }], propDecorators: { dynamicComponent: [{
9329
+ type: ViewChild,
9330
+ args: ['dynamicComponent', { read: ViewContainerRef }]
9331
+ }] } });
9332
+
9272
9333
  var TimelineStatus;
9273
9334
  (function (TimelineStatus) {
9274
9335
  TimelineStatus["EN_PROCESO"] = "En proceso";
@@ -9726,11 +9787,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
9726
9787
  // Este archivo es generado automáticamente por scripts/update-version.js
9727
9788
  // No edites manualmente este archivo
9728
9789
  const VERSION = {
9729
- full: '2.11.11',
9790
+ full: '2.11.13',
9730
9791
  major: 2,
9731
9792
  minor: 11,
9732
- patch: 11,
9733
- timestamp: '2025-08-22T09:08:34.107Z',
9793
+ patch: 13,
9794
+ timestamp: '2025-08-22T09:27:21.226Z',
9734
9795
  buildDate: '22/8/2025'
9735
9796
  };
9736
9797
 
@@ -10075,67 +10136,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
10075
10136
  }]
10076
10137
  }], ctorParameters: () => [] });
10077
10138
 
10078
- class SidebarCustomModalComponent {
10079
- modalService = inject(SidebarCustomModalService);
10080
- dynamicComponent;
10081
- ngOnInit() {
10082
- setTimeout(() => {
10083
- this.modalService.setViewContainerRef(this.dynamicComponent);
10084
- });
10085
- }
10086
- ngOnDestroy() {
10087
- this.modalService.closeModal();
10088
- }
10089
- getCurrentConfig() {
10090
- return this.modalService.getCurrentConfig()();
10091
- }
10092
- getModalClasses() {
10093
- const config = this.getCurrentConfig();
10094
- const classes = [];
10095
- if (config?.customClass) {
10096
- classes.push(config.customClass);
10097
- }
10098
- return classes.join(' ');
10099
- }
10100
- onBackdropClick(event) {
10101
- this.modalService.onBackdropClick();
10102
- }
10103
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SidebarCustomModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10104
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: SidebarCustomModalComponent, isStandalone: true, selector: "core-sidebar-custom-modal", viewQueries: [{ propertyName: "dynamicComponent", first: true, predicate: ["dynamicComponent"], descendants: true, read: ViewContainerRef }], ngImport: i0, template: `
10105
- @if(modalService.getIsOpen()()) {
10106
- <ng-container #dynamicComponent></ng-container>
10107
-
10108
- @if(getCurrentConfig()?.template) {
10109
- <ng-container
10110
- *ngTemplateOutlet="getCurrentConfig()!.template!; context: { $implicit: getCurrentConfig()?.data }">
10111
- </ng-container>
10112
- }
10113
- }
10114
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
10115
- }
10116
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SidebarCustomModalComponent, decorators: [{
10117
- type: Component,
10118
- args: [{
10119
- selector: 'core-sidebar-custom-modal',
10120
- standalone: true,
10121
- imports: [CommonModule],
10122
- template: `
10123
- @if(modalService.getIsOpen()()) {
10124
- <ng-container #dynamicComponent></ng-container>
10125
-
10126
- @if(getCurrentConfig()?.template) {
10127
- <ng-container
10128
- *ngTemplateOutlet="getCurrentConfig()!.template!; context: { $implicit: getCurrentConfig()?.data }">
10129
- </ng-container>
10130
- }
10131
- }
10132
- `,
10133
- }]
10134
- }], propDecorators: { dynamicComponent: [{
10135
- type: ViewChild,
10136
- args: ['dynamicComponent', { read: ViewContainerRef }]
10137
- }] } });
10138
-
10139
10139
  class LayoutComponent {
10140
10140
  navItems = input([]);
10141
10141
  bottomNavItems = input([]);
@@ -11316,5 +11316,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
11316
11316
  * Generated bundle index. Do not edit.
11317
11317
  */
11318
11318
 
11319
- export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GenericButtonComponent, GenericDocumentationComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericStepsComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, 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, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SmartFieldComponent, StepSize, StepStatus, StepType, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UsersModel, VERSION, equalToValidator, isSameDate, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader };
11319
+ export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GenericButtonComponent, GenericDocumentationComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericStepsComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, 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, SmartFieldComponent, StepSize, StepStatus, StepType, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UsersModel, VERSION, equalToValidator, isSameDate, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader };
11320
11320
  //# sourceMappingURL=solcre-org-core-ui.mjs.map