orbiq-neural-ui-kit 1.0.39 → 1.1.1

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.
@@ -12207,8 +12207,6 @@ class NeuralDataTableComponent {
12207
12207
  ...(ngDevMode ? [{ debugName: "subtitle" }] : /* istanbul ignore next */ []));
12208
12208
  hasInfo = input(false, /* @ts-ignore */
12209
12209
  ...(ngDevMode ? [{ debugName: "hasInfo" }] : /* istanbul ignore next */ []));
12210
- newLabel = input('Nuevo', /* @ts-ignore */
12211
- ...(ngDevMode ? [{ debugName: "newLabel" }] : /* istanbul ignore next */ []));
12212
12210
  searchPlaceholder = input('Search', /* @ts-ignore */
12213
12211
  ...(ngDevMode ? [{ debugName: "searchPlaceholder" }] : /* istanbul ignore next */ []));
12214
12212
  allColumns = input([], /* @ts-ignore */
@@ -12225,6 +12223,24 @@ class NeuralDataTableComponent {
12225
12223
  ...(ngDevMode ? [{ debugName: "emptyStateTitle" }] : /* istanbul ignore next */ []));
12226
12224
  emptyStateDesc = input('Ajusta los filtros o realiza una búsqueda para encontrar resultados.', /* @ts-ignore */
12227
12225
  ...(ngDevMode ? [{ debugName: "emptyStateDesc" }] : /* istanbul ignore next */ []));
12226
+ // Custom Dynamic Actions
12227
+ customActions = input([], /* @ts-ignore */
12228
+ ...(ngDevMode ? [{ debugName: "customActions" }] : /* istanbul ignore next */ []));
12229
+ maxVisibleActions = input(2, /* @ts-ignore */
12230
+ ...(ngDevMode ? [{ debugName: "maxVisibleActions" }] : /* istanbul ignore next */ []));
12231
+ visibleCustomActions = computed(() => this.customActions().slice(0, this.maxVisibleActions()), /* @ts-ignore */
12232
+ ...(ngDevMode ? [{ debugName: "visibleCustomActions" }] : /* istanbul ignore next */ []));
12233
+ overflowCustomActions = computed(() => this.customActions().slice(this.maxVisibleActions()), /* @ts-ignore */
12234
+ ...(ngDevMode ? [{ debugName: "overflowCustomActions" }] : /* istanbul ignore next */ []));
12235
+ overflowDropdownOptions = computed(() => {
12236
+ return this.overflowCustomActions().map(a => ({
12237
+ value: a.id,
12238
+ label: a.label,
12239
+ icon: a.icon,
12240
+ disabled: a.disabled
12241
+ }));
12242
+ }, /* @ts-ignore */
12243
+ ...(ngDevMode ? [{ debugName: "overflowDropdownOptions" }] : /* istanbul ignore next */ []));
12228
12244
  onSearch = new EventEmitter();
12229
12245
  onPageChange = new EventEmitter();
12230
12246
  sortChange = new EventEmitter();
@@ -12236,10 +12252,7 @@ class NeuralDataTableComponent {
12236
12252
  onFilterClick = new EventEmitter();
12237
12253
  onSortChangeClick = new EventEmitter();
12238
12254
  onSearchClick = new EventEmitter();
12239
- onMoreClick = new EventEmitter();
12240
- onImportClick = new EventEmitter();
12241
- onExportClick = new EventEmitter();
12242
- onNewClick = new EventEmitter();
12255
+ onCustomActionClick = new EventEmitter();
12243
12256
  cellTemplate;
12244
12257
  isPreferencesOpen = signal(false, /* @ts-ignore */
12245
12258
  ...(ngDevMode ? [{ debugName: "isPreferencesOpen" }] : /* istanbul ignore next */ []));
@@ -12251,6 +12264,9 @@ class NeuralDataTableComponent {
12251
12264
  return this.allColumns().filter(col => !this.hiddenColumns().has(col.key));
12252
12265
  }, /* @ts-ignore */
12253
12266
  ...(ngDevMode ? [{ debugName: "visibleColumns" }] : /* istanbul ignore next */ []));
12267
+ onCustomActionDropdownSelect(option) {
12268
+ this.onCustomActionClick.emit(option.value);
12269
+ }
12254
12270
  isColumnVisible(key) {
12255
12271
  return !this.hiddenColumns().has(key);
12256
12272
  }
@@ -12271,7 +12287,7 @@ class NeuralDataTableComponent {
12271
12287
  this.sortChange.emit(key);
12272
12288
  }
12273
12289
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: NeuralDataTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
12274
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.4", type: NeuralDataTableComponent, isStandalone: true, selector: "neural-data-table", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, subtitle: { classPropertyName: "subtitle", publicName: "subtitle", isSignal: true, isRequired: false, transformFunction: null }, hasInfo: { classPropertyName: "hasInfo", publicName: "hasInfo", isSignal: true, isRequired: false, transformFunction: null }, newLabel: { classPropertyName: "newLabel", publicName: "newLabel", isSignal: true, isRequired: false, transformFunction: null }, searchPlaceholder: { classPropertyName: "searchPlaceholder", publicName: "searchPlaceholder", isSignal: true, isRequired: false, transformFunction: null }, allColumns: { classPropertyName: "allColumns", publicName: "allColumns", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, rowKey: { classPropertyName: "rowKey", publicName: "rowKey", isSignal: true, isRequired: true, transformFunction: null }, page: { classPropertyName: "page", publicName: "page", isSignal: true, isRequired: false, transformFunction: null }, totalPages: { classPropertyName: "totalPages", publicName: "totalPages", isSignal: true, isRequired: false, transformFunction: null }, emptyStateTitle: { classPropertyName: "emptyStateTitle", publicName: "emptyStateTitle", isSignal: true, isRequired: false, transformFunction: null }, emptyStateDesc: { classPropertyName: "emptyStateDesc", publicName: "emptyStateDesc", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onSearch: "onSearch", onPageChange: "onPageChange", sortChange: "sortChange", onInfoClick: "onInfoClick", onHelpClick: "onHelpClick", onRefreshClick: "onRefreshClick", onViewChange: "onViewChange", onFilterClick: "onFilterClick", onSortChangeClick: "onSortChangeClick", onSearchClick: "onSearchClick", onMoreClick: "onMoreClick", onImportClick: "onImportClick", onExportClick: "onExportClick", onNewClick: "onNewClick" }, host: { properties: { "attr.title": "null" } }, queries: [{ propertyName: "cellTemplate", first: true, predicate: ["cellTemplate"], descendants: true }], ngImport: i0, template: `
12290
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.4", type: NeuralDataTableComponent, isStandalone: true, selector: "neural-data-table", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, subtitle: { classPropertyName: "subtitle", publicName: "subtitle", isSignal: true, isRequired: false, transformFunction: null }, hasInfo: { classPropertyName: "hasInfo", publicName: "hasInfo", isSignal: true, isRequired: false, transformFunction: null }, searchPlaceholder: { classPropertyName: "searchPlaceholder", publicName: "searchPlaceholder", isSignal: true, isRequired: false, transformFunction: null }, allColumns: { classPropertyName: "allColumns", publicName: "allColumns", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, rowKey: { classPropertyName: "rowKey", publicName: "rowKey", isSignal: true, isRequired: true, transformFunction: null }, page: { classPropertyName: "page", publicName: "page", isSignal: true, isRequired: false, transformFunction: null }, totalPages: { classPropertyName: "totalPages", publicName: "totalPages", isSignal: true, isRequired: false, transformFunction: null }, emptyStateTitle: { classPropertyName: "emptyStateTitle", publicName: "emptyStateTitle", isSignal: true, isRequired: false, transformFunction: null }, emptyStateDesc: { classPropertyName: "emptyStateDesc", publicName: "emptyStateDesc", isSignal: true, isRequired: false, transformFunction: null }, customActions: { classPropertyName: "customActions", publicName: "customActions", isSignal: true, isRequired: false, transformFunction: null }, maxVisibleActions: { classPropertyName: "maxVisibleActions", publicName: "maxVisibleActions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onSearch: "onSearch", onPageChange: "onPageChange", sortChange: "sortChange", onInfoClick: "onInfoClick", onHelpClick: "onHelpClick", onRefreshClick: "onRefreshClick", onViewChange: "onViewChange", onFilterClick: "onFilterClick", onSortChangeClick: "onSortChangeClick", onSearchClick: "onSearchClick", onCustomActionClick: "onCustomActionClick" }, host: { properties: { "attr.title": "null" } }, queries: [{ propertyName: "cellTemplate", first: true, predicate: ["cellTemplate"], descendants: true }], ngImport: i0, template: `
12275
12291
  <div class="flex flex-col w-full h-full bg-white rounded-md border border-outline-gray-2 shadow-sm overflow-hidden">
12276
12292
 
12277
12293
  <!-- Top Header Area -->
@@ -12307,15 +12323,24 @@ class NeuralDataTableComponent {
12307
12323
  <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Actualizar" (click)="onRefreshClick.emit()">
12308
12324
  <i class="lucide-refresh-cw size-[18px]" style="stroke-width: 1.5px;"></i>
12309
12325
  </button>
12310
- <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Importar" (click)="onImportClick.emit()">
12311
- <i class="lucide-upload size-[18px]" style="stroke-width: 1.5px;"></i>
12312
- </button>
12313
- <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Exportar" (click)="onExportClick.emit()">
12314
- <i class="lucide-download size-[18px]" style="stroke-width: 1.5px;"></i>
12315
- </button>
12316
- <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Más acciones" (click)="onMoreClick.emit()">
12317
- <i class="lucide-more-horizontal size-[18px]" style="stroke-width: 1.5px;"></i>
12318
- </button>
12326
+
12327
+ <!-- Dynamic Custom Actions -->
12328
+ @for (action of visibleCustomActions(); track action.id) {
12329
+ <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors disabled:opacity-50"
12330
+ [title]="action.label"
12331
+ [disabled]="action.disabled"
12332
+ (click)="onCustomActionClick.emit(action.id)">
12333
+ <i [class]="action.icon + ' size-[18px]'" style="stroke-width: 1.5px;"></i>
12334
+ </button>
12335
+ }
12336
+
12337
+ @if (overflowCustomActions().length > 0) {
12338
+ <neural-dropdown [options]="overflowDropdownOptions()" (onSelect)="onCustomActionDropdownSelect($event)" [hasTriggerSlot]="true" placement="bottom-end">
12339
+ <button trigger class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Más acciones">
12340
+ <i class="lucide-more-horizontal size-[18px]" style="stroke-width: 1.5px;"></i>
12341
+ </button>
12342
+ </neural-dropdown>
12343
+ }
12319
12344
  </div>
12320
12345
 
12321
12346
  <div class="w-px h-4 bg-outline-gray-2 mx-1.5"></div>
@@ -12323,7 +12348,7 @@ class NeuralDataTableComponent {
12323
12348
  <!-- Settings, Help and External Actions -->
12324
12349
  <div class="flex items-center gap-0.5">
12325
12350
  <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Configurar columnas" (click)="isPreferencesOpen.set(true)">
12326
- <i class="lucide-settings size-[18px]" style="stroke-width: 1.5px;"></i>
12351
+ <i class="lucide-columns size-[18px]" style="stroke-width: 1.5px;"></i>
12327
12352
  </button>
12328
12353
  <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Ayuda / Información" (click)="onHelpClick.emit()">
12329
12354
  <i class="lucide-help-circle size-[18px]" style="stroke-width: 1.5px;"></i>
@@ -12332,12 +12357,6 @@ class NeuralDataTableComponent {
12332
12357
  <ng-content select="[header-actions]"></ng-content>
12333
12358
  </div>
12334
12359
 
12335
- <div class="ms-1.5">
12336
- <!-- + Nuevo Button -->
12337
- <neural-button variant="solid" theme="blue" size="sm" icon="lucide-plus" [iconLeft]="true" class="!px-3 !h-8 !text-[12px]" (click)="onNewClick.emit()">
12338
- {{ newLabel() }}
12339
- </neural-button>
12340
- </div>
12341
12360
  </div>
12342
12361
  </div>
12343
12362
 
@@ -12465,7 +12484,7 @@ class NeuralDataTableComponent {
12465
12484
  </div>
12466
12485
  </neural-dialog>
12467
12486
  </div>
12468
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: NeuralButtonComponent, selector: "neural-button", inputs: ["variant", "theme", "size", "type", "disabled", "loading", "icon", "iconLeft", "iconRight", "iconOnly"], outputs: ["clicked"] }, { kind: "component", type: NeuralDialogComponent, selector: "neural-dialog", inputs: ["openModel", "title", "message", "icon", "size", "position", "paddingTop", "actions", "dismissible", "showCloseButton", "bare", "hasTitleSlot", "hasActionsSlot", "hasDefaultSlot"], outputs: ["openModelChange"] }, { kind: "component", type: NeuralSwitchComponent, selector: "neural-switch", inputs: ["valueModel", "size", "padded", "disabled", "required", "controlPosition", "icon", "label", "description", "error", "id", "hasLabelSlot", "hasDescriptionSlot"], outputs: ["valueModelChange"] }, { kind: "component", type: NeuralCheckboxComponent, selector: "neural-checkbox", inputs: ["checkedModel", "size", "padded", "indeterminate", "disabled", "required", "label", "description", "error", "id", "hasLabelSlot", "hasDescriptionSlot"], outputs: ["checkedModelChange"] }] });
12487
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: NeuralButtonComponent, selector: "neural-button", inputs: ["variant", "theme", "size", "type", "disabled", "loading", "icon", "iconLeft", "iconRight", "iconOnly"], outputs: ["clicked"] }, { kind: "component", type: NeuralDialogComponent, selector: "neural-dialog", inputs: ["openModel", "title", "message", "icon", "size", "position", "paddingTop", "actions", "dismissible", "showCloseButton", "bare", "hasTitleSlot", "hasActionsSlot", "hasDefaultSlot"], outputs: ["openModelChange"] }, { kind: "component", type: NeuralSwitchComponent, selector: "neural-switch", inputs: ["valueModel", "size", "padded", "disabled", "required", "controlPosition", "icon", "label", "description", "error", "id", "hasLabelSlot", "hasDescriptionSlot"], outputs: ["valueModelChange"] }, { kind: "component", type: NeuralCheckboxComponent, selector: "neural-checkbox", inputs: ["checkedModel", "size", "padded", "indeterminate", "disabled", "required", "label", "description", "error", "id", "hasLabelSlot", "hasDescriptionSlot"], outputs: ["checkedModelChange"] }, { kind: "component", type: NeuralDropdownComponent, selector: "neural-dropdown", inputs: ["options", "side", "align", "offset", "buttonLabel", "hasTriggerSlot"] }] });
12469
12488
  }
12470
12489
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: NeuralDataTableComponent, decorators: [{
12471
12490
  type: Component,
@@ -12477,7 +12496,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
12477
12496
  NeuralButtonComponent,
12478
12497
  NeuralDialogComponent,
12479
12498
  NeuralSwitchComponent,
12480
- NeuralCheckboxComponent
12499
+ NeuralCheckboxComponent,
12500
+ NeuralDropdownComponent
12481
12501
  ],
12482
12502
  host: {
12483
12503
  '[attr.title]': 'null'
@@ -12518,15 +12538,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
12518
12538
  <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Actualizar" (click)="onRefreshClick.emit()">
12519
12539
  <i class="lucide-refresh-cw size-[18px]" style="stroke-width: 1.5px;"></i>
12520
12540
  </button>
12521
- <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Importar" (click)="onImportClick.emit()">
12522
- <i class="lucide-upload size-[18px]" style="stroke-width: 1.5px;"></i>
12523
- </button>
12524
- <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Exportar" (click)="onExportClick.emit()">
12525
- <i class="lucide-download size-[18px]" style="stroke-width: 1.5px;"></i>
12526
- </button>
12527
- <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Más acciones" (click)="onMoreClick.emit()">
12528
- <i class="lucide-more-horizontal size-[18px]" style="stroke-width: 1.5px;"></i>
12529
- </button>
12541
+
12542
+ <!-- Dynamic Custom Actions -->
12543
+ @for (action of visibleCustomActions(); track action.id) {
12544
+ <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors disabled:opacity-50"
12545
+ [title]="action.label"
12546
+ [disabled]="action.disabled"
12547
+ (click)="onCustomActionClick.emit(action.id)">
12548
+ <i [class]="action.icon + ' size-[18px]'" style="stroke-width: 1.5px;"></i>
12549
+ </button>
12550
+ }
12551
+
12552
+ @if (overflowCustomActions().length > 0) {
12553
+ <neural-dropdown [options]="overflowDropdownOptions()" (onSelect)="onCustomActionDropdownSelect($event)" [hasTriggerSlot]="true" placement="bottom-end">
12554
+ <button trigger class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Más acciones">
12555
+ <i class="lucide-more-horizontal size-[18px]" style="stroke-width: 1.5px;"></i>
12556
+ </button>
12557
+ </neural-dropdown>
12558
+ }
12530
12559
  </div>
12531
12560
 
12532
12561
  <div class="w-px h-4 bg-outline-gray-2 mx-1.5"></div>
@@ -12534,7 +12563,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
12534
12563
  <!-- Settings, Help and External Actions -->
12535
12564
  <div class="flex items-center gap-0.5">
12536
12565
  <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Configurar columnas" (click)="isPreferencesOpen.set(true)">
12537
- <i class="lucide-settings size-[18px]" style="stroke-width: 1.5px;"></i>
12566
+ <i class="lucide-columns size-[18px]" style="stroke-width: 1.5px;"></i>
12538
12567
  </button>
12539
12568
  <button class="flex items-center justify-center size-8 rounded-md hover:bg-surface-gray-1 text-ink-gray-6 hover:text-ink-gray-9 transition-colors" title="Ayuda / Información" (click)="onHelpClick.emit()">
12540
12569
  <i class="lucide-help-circle size-[18px]" style="stroke-width: 1.5px;"></i>
@@ -12543,12 +12572,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
12543
12572
  <ng-content select="[header-actions]"></ng-content>
12544
12573
  </div>
12545
12574
 
12546
- <div class="ms-1.5">
12547
- <!-- + Nuevo Button -->
12548
- <neural-button variant="solid" theme="blue" size="sm" icon="lucide-plus" [iconLeft]="true" class="!px-3 !h-8 !text-[12px]" (click)="onNewClick.emit()">
12549
- {{ newLabel() }}
12550
- </neural-button>
12551
- </div>
12552
12575
  </div>
12553
12576
  </div>
12554
12577
 
@@ -12678,7 +12701,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
12678
12701
  </div>
12679
12702
  `
12680
12703
  }]
12681
- }], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], hasInfo: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasInfo", required: false }] }], newLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "newLabel", required: false }] }], searchPlaceholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchPlaceholder", required: false }] }], allColumns: [{ type: i0.Input, args: [{ isSignal: true, alias: "allColumns", required: false }] }], rows: [{ type: i0.Input, args: [{ isSignal: true, alias: "rows", required: false }] }], rowKey: [{ type: i0.Input, args: [{ isSignal: true, alias: "rowKey", required: true }] }], page: [{ type: i0.Input, args: [{ isSignal: true, alias: "page", required: false }] }], totalPages: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalPages", required: false }] }], emptyStateTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyStateTitle", required: false }] }], emptyStateDesc: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyStateDesc", required: false }] }], onSearch: [{
12704
+ }], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], hasInfo: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasInfo", required: false }] }], searchPlaceholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchPlaceholder", required: false }] }], allColumns: [{ type: i0.Input, args: [{ isSignal: true, alias: "allColumns", required: false }] }], rows: [{ type: i0.Input, args: [{ isSignal: true, alias: "rows", required: false }] }], rowKey: [{ type: i0.Input, args: [{ isSignal: true, alias: "rowKey", required: true }] }], page: [{ type: i0.Input, args: [{ isSignal: true, alias: "page", required: false }] }], totalPages: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalPages", required: false }] }], emptyStateTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyStateTitle", required: false }] }], emptyStateDesc: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyStateDesc", required: false }] }], customActions: [{ type: i0.Input, args: [{ isSignal: true, alias: "customActions", required: false }] }], maxVisibleActions: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxVisibleActions", required: false }] }], onSearch: [{
12682
12705
  type: Output
12683
12706
  }], onPageChange: [{
12684
12707
  type: Output
@@ -12698,13 +12721,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
12698
12721
  type: Output
12699
12722
  }], onSearchClick: [{
12700
12723
  type: Output
12701
- }], onMoreClick: [{
12702
- type: Output
12703
- }], onImportClick: [{
12704
- type: Output
12705
- }], onExportClick: [{
12706
- type: Output
12707
- }], onNewClick: [{
12724
+ }], onCustomActionClick: [{
12708
12725
  type: Output
12709
12726
  }], cellTemplate: [{
12710
12727
  type: ContentChild,