@solcre-org/core-ui 2.18.1 → 2.18.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.
@@ -13555,6 +13555,12 @@ class GenericTableComponent {
13555
13555
  return this.hasPermission(actionConfig);
13556
13556
  }
13557
13557
  triggerAction(action, row) {
13558
+ const actionConfig = this.actions().find(config => config.action === action);
13559
+ if (actionConfig?.callback && row) {
13560
+ actionConfig.callback(row);
13561
+ this.actionTriggered.emit({ action, row });
13562
+ return;
13563
+ }
13558
13564
  if (this.endpoint() && this.modelFactory()) {
13559
13565
  const customTitle = action === TableAction.CREATE ? this.createButtonText() : undefined;
13560
13566
  const result = this.tableActionService.triggerAction(action, row, this.allModalFields(), customTitle);
@@ -16655,12 +16661,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
16655
16661
  // Este archivo es generado automáticamente por scripts/update-version.js
16656
16662
  // No edites manualmente este archivo
16657
16663
  const VERSION = {
16658
- full: '2.18.1',
16664
+ full: '2.18.2',
16659
16665
  major: 2,
16660
16666
  minor: 18,
16661
- patch: 1,
16662
- timestamp: '2025-12-29T16:27:07.896Z',
16663
- buildDate: '29/12/2025'
16667
+ patch: 2,
16668
+ timestamp: '2026-01-02T13:59:48.002Z',
16669
+ buildDate: '2/1/2026'
16664
16670
  };
16665
16671
 
16666
16672
  class MainNavComponent {