@life-cockpit/angular-ui-kit 1.11.8 → 1.11.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@life-cockpit/angular-ui-kit",
3
- "version": "1.11.8",
3
+ "version": "1.11.9",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -3906,6 +3906,10 @@ declare class TableComponent {
3906
3906
  protected readonly totalRows: _angular_core.Signal<number>;
3907
3907
  /** Whether all visible rows are selected */
3908
3908
  protected readonly allSelected: _angular_core.Signal<boolean>;
3909
+ protected readonly pageSizeSelectOptions: _angular_core.Signal<{
3910
+ value: number;
3911
+ label: string;
3912
+ }[]>;
3909
3913
  /**
3910
3914
  * Computed CSS classes for the table element
3911
3915
  */
@@ -3927,6 +3931,7 @@ declare class TableComponent {
3927
3931
  onRowClick(row: Record<string, unknown>): void;
3928
3932
  protected goToPage(page: number): void;
3929
3933
  protected onPageSizeChange(event: Event): void;
3934
+ protected onPageSizeModelChange(value: string | number | null): void;
3930
3935
  protected get paginationStart(): number;
3931
3936
  protected get paginationEnd(): number;
3932
3937
  protected toggleSelectAll(): void;
@@ -3934,7 +3939,7 @@ declare class TableComponent {
3934
3939
  protected isRowSelected(relativeIndex: number): boolean;
3935
3940
  private getAbsoluteIndex;
3936
3941
  private emitSelectionChange;
3937
- protected onFilterChange(columnKey: string, event: Event): void;
3942
+ protected onFilterChange(columnKey: string, value: string): void;
3938
3943
  protected getFilterValue(columnKey: string): string;
3939
3944
  protected startEdit(rowIndex: number, column: string, currentValue: unknown): void;
3940
3945
  protected isEditing(rowIndex: number, column: string): boolean;
@@ -4103,15 +4108,16 @@ declare class FilterBarComponent {
4103
4108
  sizeClass: _angular_core.Signal<string>;
4104
4109
  /** Get the current value for a filter key */
4105
4110
  getValue(key: string): string;
4111
+ getSelectOptions(options?: readonly FilterOption[]): SelectOption[];
4106
4112
  /** Handle select / toggle change */
4107
4113
  onFilterChange(key: string, value: string): void;
4108
4114
  /** Handle search input */
4109
- onSearchInput(key: string, event: Event): void;
4115
+ onSearchInput(key: string, value: string): void;
4116
+ normalizeSelectValue(value: string | number | null): string;
4110
4117
  /** Check if a toggle option is active */
4111
4118
  isToggleActive(key: string, optionValue: string): boolean;
4112
4119
  /** Get toggle button classes */
4113
4120
  getToggleClasses(key: string, option: FilterOption): string;
4114
- protected getInputValue(event: Event): string;
4115
4121
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterBarComponent, never>;
4116
4122
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterBarComponent, "lc-filter-bar", never, { "filters": { "alias": "filters"; "required": true; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "valuesChange": "valuesChange"; }, never, never, true, never>;
4117
4123
  }
@@ -6184,7 +6190,7 @@ declare class NotificationCenterComponent {
6184
6190
  protected getPriorityLabel(priority?: NotificationPriority): string;
6185
6191
  protected formatTime(date: Date): string;
6186
6192
  protected setFilter(filter: NotificationType | 'all'): void;
6187
- protected onSearch(event: Event): void;
6193
+ protected onSearch(query: string): void;
6188
6194
  protected onClick(notification: Notification): void;
6189
6195
  protected onDismiss(id: string, event: Event): void;
6190
6196
  protected onAction(notification: Notification, event: Event): void;