@solcre-org/core-ui 2.15.13 → 2.15.15

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.
@@ -40,7 +40,9 @@
40
40
  },
41
41
  "mobile-header": {
42
42
  "filter": "Filtros",
43
- "refresh": "Actualizar"
43
+ "refresh": "Actualizar",
44
+ "menu": "Menú",
45
+ "moreActions": "Más acciones"
44
46
  },
45
47
  "sidebar": {
46
48
  "title": "Admin panel",
@@ -10950,8 +10950,29 @@ class HeaderService {
10950
10950
  this.showDefaultFilter.set(config.showDefaultFilter);
10951
10951
  if (config.showDefaultCreate !== undefined)
10952
10952
  this.showDefaultCreate.set(config.showDefaultCreate);
10953
- if (config.customActions !== undefined)
10953
+ if (config.customActions !== undefined) {
10954
10954
  this.customActions.set(config.customActions);
10955
+ const headerActions = config.customActions
10956
+ .filter(action => {
10957
+ if (!action.mobileConfig)
10958
+ return false;
10959
+ return action.mobileConfig.showInHeader === true;
10960
+ })
10961
+ .map(action => ({
10962
+ id: action.id,
10963
+ buttonConfig: {
10964
+ type: this.getButtonTypeFromClass(action.class || ''),
10965
+ text: action.label,
10966
+ icon: action.icon,
10967
+ disabled: action.disabled,
10968
+ ariaLabel: action.label,
10969
+ customClass: action.class || '',
10970
+ requiredPermission: action.requiredPermission
10971
+ },
10972
+ callback: action.callback
10973
+ }));
10974
+ this.headerActions.set(headerActions);
10975
+ }
10955
10976
  if (config.globalActions !== undefined)
10956
10977
  this.globalActions.set(config.globalActions);
10957
10978
  if (config.customFilters !== undefined)
@@ -10975,6 +10996,19 @@ class HeaderService {
10975
10996
  if (config.refreshCallback !== undefined)
10976
10997
  this.refreshCallback.set(config.refreshCallback);
10977
10998
  }
10999
+ getButtonTypeFromClass(className) {
11000
+ if (className.includes('c-btn--primary'))
11001
+ return 'primary';
11002
+ if (className.includes('c-btn--secondary'))
11003
+ return 'secondary';
11004
+ if (className.includes('c-btn--stroke'))
11005
+ return 'stroke';
11006
+ if (className.includes('c-link'))
11007
+ return 'link';
11008
+ if (className.includes('c-icon-btn'))
11009
+ return 'icon';
11010
+ return 'primary';
11011
+ }
10978
11012
  getIsVisible() {
10979
11013
  return this.isVisible;
10980
11014
  }
@@ -11044,20 +11078,48 @@ class HeaderService {
11044
11078
  clearHeaderActions() {
11045
11079
  this.headerActions.set([]);
11046
11080
  }
11081
+ getModalActions() {
11082
+ return computed(() => {
11083
+ return this.customActions().filter(action => {
11084
+ if (!action.mobileConfig)
11085
+ return false;
11086
+ return action.mobileConfig.showInsideModal === true;
11087
+ }).map(action => ({
11088
+ id: action.id,
11089
+ label: action.label,
11090
+ icon: action.icon,
11091
+ class: action.class,
11092
+ callback: action.callback,
11093
+ requiredPermission: action.requiredPermission,
11094
+ visible: action.visible,
11095
+ disabled: action.disabled
11096
+ }));
11097
+ });
11098
+ }
11099
+ hasModalActions = computed(() => {
11100
+ const actions = this.customActions().filter(action => {
11101
+ if (!action.mobileConfig)
11102
+ return false;
11103
+ return action.mobileConfig.showInsideModal === true;
11104
+ });
11105
+ return actions.length > 0;
11106
+ });
11047
11107
  getOrderedElements() {
11048
11108
  const order = this.headerOrder();
11049
11109
  if (!order || !order.useCustomOrder || !order.elements) {
11050
- return [
11110
+ const defaultElements = [
11051
11111
  { type: HeaderElementType.GLOBAL_ACTIONS, visible: true, position: 1 },
11052
11112
  { type: HeaderElementType.CUSTOM_ACTIONS, visible: true, position: 2 },
11053
11113
  { type: HeaderElementType.FILTER, visible: true, position: 3 },
11054
11114
  { type: HeaderElementType.CREATE, visible: true, position: 4 },
11055
11115
  { type: HeaderElementType.CUSTOM_TEMPLATE, visible: true, position: 5 }
11056
11116
  ];
11117
+ return defaultElements;
11057
11118
  }
11058
- return order.elements
11119
+ const customElements = order.elements
11059
11120
  .filter(element => element.visible !== false)
11060
11121
  .sort((a, b) => (a.position || 0) - (b.position || 0));
11122
+ return customElements;
11061
11123
  }
11062
11124
  isElementVisible(elementType) {
11063
11125
  const order = this.headerOrder();
@@ -11066,7 +11128,8 @@ class HeaderService {
11066
11128
  case HeaderElementType.GLOBAL_ACTIONS:
11067
11129
  return this.globalActions().length > 0;
11068
11130
  case HeaderElementType.CUSTOM_ACTIONS:
11069
- return this.customActions().length > 0;
11131
+ const hasCustomActions = this.customActions().length > 0;
11132
+ return hasCustomActions;
11070
11133
  case HeaderElementType.FILTER:
11071
11134
  return this.showDefaultFilter() && (this.showFilter() || this.customFilters().length > 0);
11072
11135
  case HeaderElementType.CREATE:
@@ -15275,6 +15338,7 @@ class HeaderComponent {
15275
15338
  headerService = inject(HeaderService);
15276
15339
  permissionService = inject(PermissionWrapperService);
15277
15340
  cdr = inject(ChangeDetectorRef);
15341
+ mobileResolutionService = inject(MobileResolutionService);
15278
15342
  HeaderElementType = HeaderElementType;
15279
15343
  title = 'ASDSAS';
15280
15344
  user;
@@ -15420,7 +15484,20 @@ class HeaderComponent {
15420
15484
  hasPermission(action) {
15421
15485
  if (!action.requiredPermission)
15422
15486
  return true;
15423
- return this.permissionService.hasPermission(action.requiredPermission.resource, action.requiredPermission.action);
15487
+ const hasPermission = this.permissionService.hasPermission(action.requiredPermission.resource, action.requiredPermission.action);
15488
+ if (!hasPermission)
15489
+ return false;
15490
+ const isMobile = this.mobileResolutionService.isMobile();
15491
+ if (!action.mobileConfig) {
15492
+ return true;
15493
+ }
15494
+ if (isMobile) {
15495
+ if (action.mobileConfig.showInHeader === false) {
15496
+ return false;
15497
+ }
15498
+ return true;
15499
+ }
15500
+ return true;
15424
15501
  }
15425
15502
  isGlobalActionDisabled(action) {
15426
15503
  return action.isDisabled ?? false;
@@ -15440,7 +15517,21 @@ class HeaderComponent {
15440
15517
  return this.permissionService.hasPermission(action.requiredPermission.resource, action.requiredPermission.action);
15441
15518
  }
15442
15519
  isCustomActionVisible(action) {
15443
- return action.visible !== false && this.hasCustomActionPermission(action);
15520
+ if (action.visible === false)
15521
+ return false;
15522
+ if (!this.hasCustomActionPermission(action))
15523
+ return false;
15524
+ const isMobile = this.mobileResolutionService.isMobile();
15525
+ if (!action.mobileConfig) {
15526
+ return true;
15527
+ }
15528
+ if (isMobile) {
15529
+ if (action.mobileConfig.showInHeader === false) {
15530
+ return false;
15531
+ }
15532
+ return true;
15533
+ }
15534
+ return true;
15444
15535
  }
15445
15536
  isCustomActionDisabled(action) {
15446
15537
  return action.disabled ?? false;
@@ -15451,7 +15542,8 @@ class HeaderComponent {
15451
15542
  }
15452
15543
  }
15453
15544
  getHeaderTitle() {
15454
- return this.headerService.getTitle()();
15545
+ const title = this.headerService.getTitle()();
15546
+ return title;
15455
15547
  }
15456
15548
  getHeaderText() {
15457
15549
  return this.headerService.getText()();
@@ -15599,12 +15691,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
15599
15691
  // Este archivo es generado automáticamente por scripts/update-version.js
15600
15692
  // No edites manualmente este archivo
15601
15693
  const VERSION = {
15602
- full: '2.15.13',
15694
+ full: '2.15.15',
15603
15695
  major: 2,
15604
15696
  minor: 15,
15605
- patch: 13,
15606
- timestamp: '2025-10-13T14:12:52.608Z',
15607
- buildDate: '13/10/2025'
15697
+ patch: 15,
15698
+ timestamp: '2025-10-15T13:03:12.947Z',
15699
+ buildDate: '15/10/2025'
15608
15700
  };
15609
15701
 
15610
15702
  class MainNavComponent {
@@ -16372,6 +16464,176 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
16372
16464
  args: ['document:keydown', ['$event']]
16373
16465
  }] } });
16374
16466
 
16467
+ class GenericFixedActionsComponent {
16468
+ headerService = inject(HeaderService);
16469
+ fixedActionsMobileModalService = inject(FixedActionsMobileModalService);
16470
+ permissionService = inject(PermissionWrapperService);
16471
+ mobileResolutionService = inject(MobileResolutionService);
16472
+ cdr = inject(ChangeDetectorRef);
16473
+ constructor() {
16474
+ effect(() => {
16475
+ const actions = this.visibleActions();
16476
+ this.cdr.markForCheck();
16477
+ });
16478
+ }
16479
+ shouldShow = this.mobileResolutionService.shouldShowMobileHeader;
16480
+ outsideActions = computed(() => {
16481
+ const actions = this.headerService.getCustomActions()()
16482
+ .filter(action => {
16483
+ if (!action.mobileConfig)
16484
+ return false;
16485
+ return action.mobileConfig.showOutsideFixedActions === true;
16486
+ })
16487
+ .filter(action => {
16488
+ if (action.requiredPermission) {
16489
+ return this.permissionService.hasPermission(action.requiredPermission.resource, action.requiredPermission.action);
16490
+ }
16491
+ return true;
16492
+ })
16493
+ .filter(action => {
16494
+ const visibleValue = action.visible;
16495
+ if (typeof visibleValue === 'function') {
16496
+ return visibleValue();
16497
+ }
16498
+ return visibleValue !== false;
16499
+ });
16500
+ return actions;
16501
+ });
16502
+ modalActions = computed(() => {
16503
+ const actions = this.headerService.getCustomActions()()
16504
+ .filter(action => {
16505
+ if (!action.mobileConfig)
16506
+ return false;
16507
+ return action.mobileConfig.showInsideModal === true;
16508
+ })
16509
+ .filter(action => {
16510
+ if (action.requiredPermission) {
16511
+ return this.permissionService.hasPermission(action.requiredPermission.resource, action.requiredPermission.action);
16512
+ }
16513
+ return true;
16514
+ })
16515
+ .filter(action => {
16516
+ const visibleValue = action.visible;
16517
+ if (typeof visibleValue === 'function') {
16518
+ return visibleValue();
16519
+ }
16520
+ return visibleValue !== false;
16521
+ });
16522
+ return actions;
16523
+ });
16524
+ hasModalActions = computed(() => {
16525
+ const has = this.modalActions().length > 0;
16526
+ return has;
16527
+ });
16528
+ visibleActions = computed(() => {
16529
+ const actions = [];
16530
+ this.outsideActions().forEach(action => {
16531
+ actions.push({
16532
+ id: action.id,
16533
+ icon: action.icon,
16534
+ label: action.label,
16535
+ class: action.class,
16536
+ tooltip: action.tooltip,
16537
+ callback: action.callback,
16538
+ requiredPermission: action.requiredPermission
16539
+ });
16540
+ });
16541
+ const modalActionsArray = this.modalActions();
16542
+ if (modalActionsArray.length > 0) {
16543
+ const plusButtonAction = {
16544
+ id: 'header-more-actions',
16545
+ icon: 'icon-add-clean',
16546
+ class: 'c-btn',
16547
+ tooltip: 'Más acciones',
16548
+ callback: () => this.openModalActions()
16549
+ };
16550
+ actions.push(plusButtonAction);
16551
+ }
16552
+ return actions;
16553
+ });
16554
+ getActionClass(action) {
16555
+ const baseClass = 'c-fixed-actions__btn';
16556
+ const iconClass = action.icon || '';
16557
+ const customClass = action.class || 'c-btn';
16558
+ return `${baseClass} ${customClass} ${iconClass}`.trim();
16559
+ }
16560
+ isActionDisabled(action) {
16561
+ return false;
16562
+ }
16563
+ onActionClick(action) {
16564
+ if (action.callback) {
16565
+ action.callback();
16566
+ }
16567
+ }
16568
+ openModalActions() {
16569
+ const actions = this.modalActions();
16570
+ if (actions.length === 0)
16571
+ return;
16572
+ const fixedActions = actions.map(action => ({
16573
+ id: action.id,
16574
+ label: action.label,
16575
+ icon: action.icon,
16576
+ class: action.class,
16577
+ callback: action.callback,
16578
+ requiredPermission: action.requiredPermission,
16579
+ customAction: {
16580
+ label: action.label,
16581
+ title: action.label,
16582
+ icon: action.icon,
16583
+ callback: () => {
16584
+ if (action.callback) {
16585
+ action.callback();
16586
+ }
16587
+ },
16588
+ requiredPermission: action.requiredPermission,
16589
+ shouldShow: () => action.visible !== false,
16590
+ shouldDisable: () => action.disabled === true
16591
+ }
16592
+ }));
16593
+ this.fixedActionsMobileModalService.open({
16594
+ title: 'Acciones',
16595
+ actions: fixedActions
16596
+ });
16597
+ }
16598
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: GenericFixedActionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
16599
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: GenericFixedActionsComponent, isStandalone: true, selector: "core-generic-fixed-actions", ngImport: i0, template: `
16600
+ @if (shouldShow() && visibleActions().length > 0) {
16601
+ @for (action of visibleActions(); track action.id) {
16602
+ <button
16603
+ type="button"
16604
+ [ngClass]="getActionClass(action)"
16605
+ [disabled]="isActionDisabled(action)"
16606
+ [title]="action.tooltip || action.label || ''"
16607
+ [attr.aria-label]="action.tooltip || action.label || ''"
16608
+ (click)="onActionClick(action)">
16609
+ </button>
16610
+ }
16611
+ }
16612
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
16613
+ }
16614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: GenericFixedActionsComponent, decorators: [{
16615
+ type: Component,
16616
+ args: [{
16617
+ selector: 'core-generic-fixed-actions',
16618
+ standalone: true,
16619
+ imports: [CommonModule],
16620
+ template: `
16621
+ @if (shouldShow() && visibleActions().length > 0) {
16622
+ @for (action of visibleActions(); track action.id) {
16623
+ <button
16624
+ type="button"
16625
+ [ngClass]="getActionClass(action)"
16626
+ [disabled]="isActionDisabled(action)"
16627
+ [title]="action.tooltip || action.label || ''"
16628
+ [attr.aria-label]="action.tooltip || action.label || ''"
16629
+ (click)="onActionClick(action)">
16630
+ </button>
16631
+ }
16632
+ }
16633
+ `,
16634
+ }]
16635
+ }], ctorParameters: () => [] });
16636
+
16375
16637
  class LayoutComponent {
16376
16638
  navItems = input([]);
16377
16639
  bottomNavItems = input([]);
@@ -16570,7 +16832,7 @@ class LayoutComponent {
16570
16832
  this.onLogout.emit();
16571
16833
  }
16572
16834
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: LayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
16573
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: LayoutComponent, isStandalone: true, selector: "core-layout", inputs: { navItems: { classPropertyName: "navItems", publicName: "navItems", isSignal: true, isRequired: false, transformFunction: null }, bottomNavItems: { classPropertyName: "bottomNavItems", publicName: "bottomNavItems", isSignal: true, isRequired: false, transformFunction: null }, collapsedLogo: { classPropertyName: "collapsedLogo", publicName: "collapsedLogo", isSignal: true, isRequired: false, transformFunction: null }, expandedLogo: { classPropertyName: "expandedLogo", publicName: "expandedLogo", isSignal: true, isRequired: false, transformFunction: null }, logoImagesConfig: { classPropertyName: "logoImagesConfig", publicName: "logoImagesConfig", isSignal: true, isRequired: false, transformFunction: null }, navConfig: { classPropertyName: "navConfig", publicName: "navConfig", isSignal: true, isRequired: false, transformFunction: null }, mobileHeaderConfig: { classPropertyName: "mobileHeaderConfig", publicName: "mobileHeaderConfig", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onLogout: "onLogout", onMobileRefresh: "onMobileRefresh", onMobileFilter: "onMobileFilter" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "mainNavComponent", first: true, predicate: MainNavComponent, descendants: true }], hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<div class=\"o-layout\" \n [attr.data-layout]=\"layoutService.dataAttributes()['data-layout']\"\n [attr.data-sidebar-left]=\"getEffectiveLeftSidebarVisibility()\"\n [attr.data-sidebar-left-w]=\"getEffectiveLeftSidebarWidth()\"\n [attr.data-sidebar-left-h]=\"getEffectiveLeftSidebarHeight()\"\n [attr.data-sidebar-right]=\"getEffectiveRightSidebarVisibility()\"\n [attr.data-sidebar-right-w]=\"getEffectiveRightSidebarWidth()\"\n [attr.data-sidebar-right-h]=\"getEffectiveRightSidebarHeight()\"\n >\n\n <!-- Nav -->\n <core-main-nav class=\"o-layout__nav\" \n (toggleSidebar)=\"toggleSidebar()\"\n [navItems]=\"navItems()\"\n [navConfig]=\"navConfig()\"\n [bottomNavItems]=\"bottomNavItems()\"\n [logoImagesConfig]=\"logoImagesConfig()\"\n [collapsedLogo]=\"collapsedLogo()\"\n [expandedLogo]=\"expandedLogo()\"\n (onLogout)=\"logout()\"\n >\n </core-main-nav>\n\n <!-- Main -->\n <div class=\"o-layout__body\">\n \n @if(shouldShowMobileHeader() && mobileHeaderConfig()) {\n <core-mobile-header\n class=\"o-layout__header c-header-mobile\"\n [config]=\"mobileHeaderConfig()!\"\n (menuClick)=\"onMobileMenuClick()\"\n (refreshClick)=\"onMobileRefreshClick()\"\n (filterClick)=\"onMobileFilterClick()\">\n </core-mobile-header>\n }\n\n @if(layoutStateService.isHeaderVisible$() | async) {\n @if(!shouldShowMobileHeader()) {\n <core-header\n [class]=\"getHeaderClasses()\"\n (filterRequested)=\"onFilterRequested()\"\n (createRequested)=\"onCreateRequested()\"\n (globalActionTriggered)=\"onGlobalActionTriggered($event)\">\n </core-header>\n }\n }\n\n @if(layoutService.sidebarLeft().visibility === SidebarVisibility.SHOW && leftSidebarConfig && shouldRenderLeftSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--left\"\n [config]=\"leftSidebarConfig\">\n </core-generic-sidebar>\n }\n\n <ng-content></ng-content>\n\n @if(layoutService.sidebarRight().visibility === SidebarVisibility.SHOW && rightSidebarConfig && shouldRenderRightSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--right\"\n [config]=\"rightSidebarConfig\">\n </core-generic-sidebar>\n }\n\n\n @if(dialogService.isOpen$()) {\n <core-confirmation-dialog\n [isOpen]=\"dialogService.isOpen$()\"\n [config]=\"dialogService.config$()\"\n (confirm)=\"dialogService.confirm($event)\"\n (cancel)=\"dialogService.cancel()\"\n ></core-confirmation-dialog>\n }\n\n @if(sidebarMobileModalService.isOpen()) {\n <core-generic-modal\n [isOpen]=\"sidebarMobileModalService.isOpen()\"\n [mode]=\"ModalMode.CREATE\"\n [title]=\"getSidebarModalTitle()\"\n [customTemplate]=\"sidebarModalContentTemplate\"\n (close)=\"sidebarMobileModalService.closeModal()\"\n [buttonConfig]=\"getSidebarModalButtons()\">\n </core-generic-modal>\n }\n\n </div> <!-- .o-layout__body -->\n</div> <!-- .o-layout -->\n\n<!-- Sidebar Custom Modal Global -->\n<core-sidebar-custom-modal></core-sidebar-custom-modal>\n\n<!-- Image Modal Global -->\n<core-image-modal></core-image-modal>\n\n<!-- Gallery Modal Global -->\n<core-gallery-modal></core-gallery-modal>\n\n<!-- ! Refactor: End -->", dependencies: [{ kind: "component", type: MainNavComponent, selector: "core-main-nav", inputs: ["navConfig", "appVersion", "navItems", "bottomNavItems", "isProduction", "logoImagesConfig", "collapsedLogo", "expandedLogo"], outputs: ["onLogout"] }, { kind: "component", type: HeaderComponent, selector: "core-header", outputs: ["filterRequested", "createRequested", "globalActionTriggered"] }, { kind: "component", type: MobileHeaderComponent, selector: "core-mobile-header", inputs: ["config"], outputs: ["menuClick", "refreshClick", "filterClick"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "component", type: ConfirmationDialogComponent, selector: "core-confirmation-dialog", inputs: ["isOpen", "config"], outputs: ["confirm", "cancel"] }, { kind: "component", type: GenericSidebarComponent, selector: "core-generic-sidebar", inputs: ["config", "position", "customTemplate"], outputs: ["itemClicked", "subItemClicked"] }, { kind: "component", type: GenericModalComponent, selector: "core-generic-modal", inputs: ["isOpen", "mode", "data", "fields", "tabs", "steps", "title", "isMultiple", "customTemplate", "customViewTemplate", "finalStepTemplate", "buttonConfig", "modelFactory", "errors", "validators", "customHasChanges", "stepValidationEnabled", "allowFreeNavigation", "autoMarkCompleted"], outputs: ["save", "close", "modalData"] }, { kind: "component", type: ImageModalComponent, selector: "core-image-modal", outputs: ["modalClosed"] }, { kind: "component", type: GalleryModalComponent, selector: "core-gallery-modal" }, { kind: "component", type: SidebarCustomModalComponent, selector: "core-sidebar-custom-modal" }] });
16835
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: LayoutComponent, isStandalone: true, selector: "core-layout", inputs: { navItems: { classPropertyName: "navItems", publicName: "navItems", isSignal: true, isRequired: false, transformFunction: null }, bottomNavItems: { classPropertyName: "bottomNavItems", publicName: "bottomNavItems", isSignal: true, isRequired: false, transformFunction: null }, collapsedLogo: { classPropertyName: "collapsedLogo", publicName: "collapsedLogo", isSignal: true, isRequired: false, transformFunction: null }, expandedLogo: { classPropertyName: "expandedLogo", publicName: "expandedLogo", isSignal: true, isRequired: false, transformFunction: null }, logoImagesConfig: { classPropertyName: "logoImagesConfig", publicName: "logoImagesConfig", isSignal: true, isRequired: false, transformFunction: null }, navConfig: { classPropertyName: "navConfig", publicName: "navConfig", isSignal: true, isRequired: false, transformFunction: null }, mobileHeaderConfig: { classPropertyName: "mobileHeaderConfig", publicName: "mobileHeaderConfig", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onLogout: "onLogout", onMobileRefresh: "onMobileRefresh", onMobileFilter: "onMobileFilter" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "mainNavComponent", first: true, predicate: MainNavComponent, descendants: true }], hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<div class=\"o-layout\" \n [attr.data-layout]=\"layoutService.dataAttributes()['data-layout']\"\n [attr.data-sidebar-left]=\"getEffectiveLeftSidebarVisibility()\"\n [attr.data-sidebar-left-w]=\"getEffectiveLeftSidebarWidth()\"\n [attr.data-sidebar-left-h]=\"getEffectiveLeftSidebarHeight()\"\n [attr.data-sidebar-right]=\"getEffectiveRightSidebarVisibility()\"\n [attr.data-sidebar-right-w]=\"getEffectiveRightSidebarWidth()\"\n [attr.data-sidebar-right-h]=\"getEffectiveRightSidebarHeight()\"\n >\n\n <!-- Nav -->\n <core-main-nav class=\"o-layout__nav\" \n (toggleSidebar)=\"toggleSidebar()\"\n [navItems]=\"navItems()\"\n [navConfig]=\"navConfig()\"\n [bottomNavItems]=\"bottomNavItems()\"\n [logoImagesConfig]=\"logoImagesConfig()\"\n [collapsedLogo]=\"collapsedLogo()\"\n [expandedLogo]=\"expandedLogo()\"\n (onLogout)=\"logout()\"\n >\n </core-main-nav>\n\n <!-- Main -->\n <div class=\"o-layout__body\">\n \n @if(shouldShowMobileHeader() && mobileHeaderConfig()) {\n <core-mobile-header\n class=\"o-layout__header c-header-mobile\"\n [config]=\"mobileHeaderConfig()!\"\n (menuClick)=\"onMobileMenuClick()\"\n (refreshClick)=\"onMobileRefreshClick()\"\n (filterClick)=\"onMobileFilterClick()\">\n </core-mobile-header>\n }\n\n @if(layoutStateService.isHeaderVisible$() | async) {\n @if(!shouldShowMobileHeader()) {\n <core-header\n [class]=\"getHeaderClasses()\"\n (filterRequested)=\"onFilterRequested()\"\n (createRequested)=\"onCreateRequested()\"\n (globalActionTriggered)=\"onGlobalActionTriggered($event)\">\n </core-header>\n }\n }\n\n @if(layoutService.sidebarLeft().visibility === SidebarVisibility.SHOW && leftSidebarConfig && shouldRenderLeftSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--left\"\n [config]=\"leftSidebarConfig\">\n </core-generic-sidebar>\n }\n\n <ng-content></ng-content>\n\n @if(layoutService.sidebarRight().visibility === SidebarVisibility.SHOW && rightSidebarConfig && shouldRenderRightSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--right\"\n [config]=\"rightSidebarConfig\">\n </core-generic-sidebar>\n }\n\n\n @if(dialogService.isOpen$()) {\n <core-confirmation-dialog\n [isOpen]=\"dialogService.isOpen$()\"\n [config]=\"dialogService.config$()\"\n (confirm)=\"dialogService.confirm($event)\"\n (cancel)=\"dialogService.cancel()\"\n ></core-confirmation-dialog>\n }\n\n @if(sidebarMobileModalService.isOpen()) {\n <core-generic-modal\n [isOpen]=\"sidebarMobileModalService.isOpen()\"\n [mode]=\"ModalMode.CREATE\"\n [title]=\"getSidebarModalTitle()\"\n [customTemplate]=\"sidebarModalContentTemplate\"\n (close)=\"sidebarMobileModalService.closeModal()\"\n [buttonConfig]=\"getSidebarModalButtons()\">\n </core-generic-modal>\n }\n\n </div> <!-- .o-layout__body -->\n</div> <!-- .o-layout -->\n\n<!-- Fixed Actions (Mobile) -->\n<core-generic-fixed-actions class=\"c-fixed-actions c-fixed-actions--right\"/>\n\n<!-- Fixed Actions Mobile Modal -->\n<core-fixed-actions-mobile-modal />\n\n<!-- Sidebar Custom Modal Global -->\n<core-sidebar-custom-modal></core-sidebar-custom-modal>\n\n<!-- Image Modal Global -->\n<core-image-modal></core-image-modal>\n\n<!-- Gallery Modal Global -->\n<core-gallery-modal></core-gallery-modal>\n\n<!-- ! Refactor: End -->", dependencies: [{ kind: "component", type: MainNavComponent, selector: "core-main-nav", inputs: ["navConfig", "appVersion", "navItems", "bottomNavItems", "isProduction", "logoImagesConfig", "collapsedLogo", "expandedLogo"], outputs: ["onLogout"] }, { kind: "component", type: HeaderComponent, selector: "core-header", outputs: ["filterRequested", "createRequested", "globalActionTriggered"] }, { kind: "component", type: MobileHeaderComponent, selector: "core-mobile-header", inputs: ["config"], outputs: ["menuClick", "refreshClick", "filterClick"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "component", type: ConfirmationDialogComponent, selector: "core-confirmation-dialog", inputs: ["isOpen", "config"], outputs: ["confirm", "cancel"] }, { kind: "component", type: GenericSidebarComponent, selector: "core-generic-sidebar", inputs: ["config", "position", "customTemplate"], outputs: ["itemClicked", "subItemClicked"] }, { kind: "component", type: GenericModalComponent, selector: "core-generic-modal", inputs: ["isOpen", "mode", "data", "fields", "tabs", "steps", "title", "isMultiple", "customTemplate", "customViewTemplate", "finalStepTemplate", "buttonConfig", "modelFactory", "errors", "validators", "customHasChanges", "stepValidationEnabled", "allowFreeNavigation", "autoMarkCompleted"], outputs: ["save", "close", "modalData"] }, { kind: "component", type: ImageModalComponent, selector: "core-image-modal", outputs: ["modalClosed"] }, { kind: "component", type: GalleryModalComponent, selector: "core-gallery-modal" }, { kind: "component", type: SidebarCustomModalComponent, selector: "core-sidebar-custom-modal" }, { kind: "component", type: GenericFixedActionsComponent, selector: "core-generic-fixed-actions" }, { kind: "component", type: FixedActionsMobileModalComponent, selector: "core-fixed-actions-mobile-modal" }] });
16574
16836
  }
16575
16837
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: LayoutComponent, decorators: [{
16576
16838
  type: Component,
@@ -16584,8 +16846,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
16584
16846
  GenericModalComponent,
16585
16847
  ImageModalComponent,
16586
16848
  GalleryModalComponent,
16587
- SidebarCustomModalComponent
16588
- ], hostDirectives: [CoreHostDirective], template: "<div class=\"o-layout\" \n [attr.data-layout]=\"layoutService.dataAttributes()['data-layout']\"\n [attr.data-sidebar-left]=\"getEffectiveLeftSidebarVisibility()\"\n [attr.data-sidebar-left-w]=\"getEffectiveLeftSidebarWidth()\"\n [attr.data-sidebar-left-h]=\"getEffectiveLeftSidebarHeight()\"\n [attr.data-sidebar-right]=\"getEffectiveRightSidebarVisibility()\"\n [attr.data-sidebar-right-w]=\"getEffectiveRightSidebarWidth()\"\n [attr.data-sidebar-right-h]=\"getEffectiveRightSidebarHeight()\"\n >\n\n <!-- Nav -->\n <core-main-nav class=\"o-layout__nav\" \n (toggleSidebar)=\"toggleSidebar()\"\n [navItems]=\"navItems()\"\n [navConfig]=\"navConfig()\"\n [bottomNavItems]=\"bottomNavItems()\"\n [logoImagesConfig]=\"logoImagesConfig()\"\n [collapsedLogo]=\"collapsedLogo()\"\n [expandedLogo]=\"expandedLogo()\"\n (onLogout)=\"logout()\"\n >\n </core-main-nav>\n\n <!-- Main -->\n <div class=\"o-layout__body\">\n \n @if(shouldShowMobileHeader() && mobileHeaderConfig()) {\n <core-mobile-header\n class=\"o-layout__header c-header-mobile\"\n [config]=\"mobileHeaderConfig()!\"\n (menuClick)=\"onMobileMenuClick()\"\n (refreshClick)=\"onMobileRefreshClick()\"\n (filterClick)=\"onMobileFilterClick()\">\n </core-mobile-header>\n }\n\n @if(layoutStateService.isHeaderVisible$() | async) {\n @if(!shouldShowMobileHeader()) {\n <core-header\n [class]=\"getHeaderClasses()\"\n (filterRequested)=\"onFilterRequested()\"\n (createRequested)=\"onCreateRequested()\"\n (globalActionTriggered)=\"onGlobalActionTriggered($event)\">\n </core-header>\n }\n }\n\n @if(layoutService.sidebarLeft().visibility === SidebarVisibility.SHOW && leftSidebarConfig && shouldRenderLeftSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--left\"\n [config]=\"leftSidebarConfig\">\n </core-generic-sidebar>\n }\n\n <ng-content></ng-content>\n\n @if(layoutService.sidebarRight().visibility === SidebarVisibility.SHOW && rightSidebarConfig && shouldRenderRightSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--right\"\n [config]=\"rightSidebarConfig\">\n </core-generic-sidebar>\n }\n\n\n @if(dialogService.isOpen$()) {\n <core-confirmation-dialog\n [isOpen]=\"dialogService.isOpen$()\"\n [config]=\"dialogService.config$()\"\n (confirm)=\"dialogService.confirm($event)\"\n (cancel)=\"dialogService.cancel()\"\n ></core-confirmation-dialog>\n }\n\n @if(sidebarMobileModalService.isOpen()) {\n <core-generic-modal\n [isOpen]=\"sidebarMobileModalService.isOpen()\"\n [mode]=\"ModalMode.CREATE\"\n [title]=\"getSidebarModalTitle()\"\n [customTemplate]=\"sidebarModalContentTemplate\"\n (close)=\"sidebarMobileModalService.closeModal()\"\n [buttonConfig]=\"getSidebarModalButtons()\">\n </core-generic-modal>\n }\n\n </div> <!-- .o-layout__body -->\n</div> <!-- .o-layout -->\n\n<!-- Sidebar Custom Modal Global -->\n<core-sidebar-custom-modal></core-sidebar-custom-modal>\n\n<!-- Image Modal Global -->\n<core-image-modal></core-image-modal>\n\n<!-- Gallery Modal Global -->\n<core-gallery-modal></core-gallery-modal>\n\n<!-- ! Refactor: End -->" }]
16849
+ SidebarCustomModalComponent,
16850
+ GenericFixedActionsComponent,
16851
+ FixedActionsMobileModalComponent
16852
+ ], hostDirectives: [CoreHostDirective], template: "<div class=\"o-layout\" \n [attr.data-layout]=\"layoutService.dataAttributes()['data-layout']\"\n [attr.data-sidebar-left]=\"getEffectiveLeftSidebarVisibility()\"\n [attr.data-sidebar-left-w]=\"getEffectiveLeftSidebarWidth()\"\n [attr.data-sidebar-left-h]=\"getEffectiveLeftSidebarHeight()\"\n [attr.data-sidebar-right]=\"getEffectiveRightSidebarVisibility()\"\n [attr.data-sidebar-right-w]=\"getEffectiveRightSidebarWidth()\"\n [attr.data-sidebar-right-h]=\"getEffectiveRightSidebarHeight()\"\n >\n\n <!-- Nav -->\n <core-main-nav class=\"o-layout__nav\" \n (toggleSidebar)=\"toggleSidebar()\"\n [navItems]=\"navItems()\"\n [navConfig]=\"navConfig()\"\n [bottomNavItems]=\"bottomNavItems()\"\n [logoImagesConfig]=\"logoImagesConfig()\"\n [collapsedLogo]=\"collapsedLogo()\"\n [expandedLogo]=\"expandedLogo()\"\n (onLogout)=\"logout()\"\n >\n </core-main-nav>\n\n <!-- Main -->\n <div class=\"o-layout__body\">\n \n @if(shouldShowMobileHeader() && mobileHeaderConfig()) {\n <core-mobile-header\n class=\"o-layout__header c-header-mobile\"\n [config]=\"mobileHeaderConfig()!\"\n (menuClick)=\"onMobileMenuClick()\"\n (refreshClick)=\"onMobileRefreshClick()\"\n (filterClick)=\"onMobileFilterClick()\">\n </core-mobile-header>\n }\n\n @if(layoutStateService.isHeaderVisible$() | async) {\n @if(!shouldShowMobileHeader()) {\n <core-header\n [class]=\"getHeaderClasses()\"\n (filterRequested)=\"onFilterRequested()\"\n (createRequested)=\"onCreateRequested()\"\n (globalActionTriggered)=\"onGlobalActionTriggered($event)\">\n </core-header>\n }\n }\n\n @if(layoutService.sidebarLeft().visibility === SidebarVisibility.SHOW && leftSidebarConfig && shouldRenderLeftSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--left\"\n [config]=\"leftSidebarConfig\">\n </core-generic-sidebar>\n }\n\n <ng-content></ng-content>\n\n @if(layoutService.sidebarRight().visibility === SidebarVisibility.SHOW && rightSidebarConfig && shouldRenderRightSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--right\"\n [config]=\"rightSidebarConfig\">\n </core-generic-sidebar>\n }\n\n\n @if(dialogService.isOpen$()) {\n <core-confirmation-dialog\n [isOpen]=\"dialogService.isOpen$()\"\n [config]=\"dialogService.config$()\"\n (confirm)=\"dialogService.confirm($event)\"\n (cancel)=\"dialogService.cancel()\"\n ></core-confirmation-dialog>\n }\n\n @if(sidebarMobileModalService.isOpen()) {\n <core-generic-modal\n [isOpen]=\"sidebarMobileModalService.isOpen()\"\n [mode]=\"ModalMode.CREATE\"\n [title]=\"getSidebarModalTitle()\"\n [customTemplate]=\"sidebarModalContentTemplate\"\n (close)=\"sidebarMobileModalService.closeModal()\"\n [buttonConfig]=\"getSidebarModalButtons()\">\n </core-generic-modal>\n }\n\n </div> <!-- .o-layout__body -->\n</div> <!-- .o-layout -->\n\n<!-- Fixed Actions (Mobile) -->\n<core-generic-fixed-actions class=\"c-fixed-actions c-fixed-actions--right\"/>\n\n<!-- Fixed Actions Mobile Modal -->\n<core-fixed-actions-mobile-modal />\n\n<!-- Sidebar Custom Modal Global -->\n<core-sidebar-custom-modal></core-sidebar-custom-modal>\n\n<!-- Image Modal Global -->\n<core-image-modal></core-image-modal>\n\n<!-- Gallery Modal Global -->\n<core-gallery-modal></core-gallery-modal>\n\n<!-- ! Refactor: End -->" }]
16589
16853
  }], propDecorators: { mainNavComponent: [{
16590
16854
  type: ViewChild,
16591
16855
  args: [MainNavComponent]
@@ -19121,5 +19385,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
19121
19385
  * Generated bundle index. Do not edit.
19122
19386
  */
19123
19387
 
19124
- export { ALL_COUNTRY_CODES, ActiveFiltersComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_COUNTRIES, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, 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, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, 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, 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, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, 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, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
19388
+ export { ALL_COUNTRY_CODES, ActiveFiltersComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_COUNTRIES, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, 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, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, 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, 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, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, 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, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
19125
19389
  //# sourceMappingURL=solcre-org-core-ui.mjs.map