@wolkabout/commons 0.0.27 → 0.0.28

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/index.d.ts CHANGED
@@ -934,19 +934,22 @@ interface TableColumn {
934
934
  }
935
935
  type SortDirection = 'asc' | 'desc';
936
936
  declare class LocalSortTableComponent {
937
+ private tenantPropertiesService;
938
+ private translateService;
937
939
  columns: _angular_core.InputSignal<TableColumn[]>;
938
940
  data: _angular_core.InputSignal<Record<string, any>[]>;
939
941
  translationPrefix: _angular_core.InputSignal<string>;
940
942
  loading: _angular_core.InputSignal<boolean>;
943
+ noValuesMessage: _angular_core.InputSignal<string>;
941
944
  itemSelected: _angular_core.OutputEmitterRef<Record<string, any>>;
942
945
  sortDirection: SortDirection;
943
946
  sortField: string;
944
947
  displayData: _angular_core.WritableSignal<Record<string, any>[] | null>;
945
948
  sorting: _angular_core.WritableSignal<boolean>;
946
- constructor();
949
+ constructor(tenantPropertiesService: TenantPropertiesService, translateService: TranslateService);
947
950
  sort(field: string, shouldUpdateDirectionAndField?: boolean): void;
948
951
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LocalSortTableComponent, never>;
949
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<LocalSortTableComponent, "app-local-sort-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "translationPrefix": { "alias": "translationPrefix"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, never, never, true, never>;
952
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LocalSortTableComponent, "app-local-sort-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "translationPrefix": { "alias": "translationPrefix"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "noValuesMessage": { "alias": "noValuesMessage"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, never, never, true, never>;
950
953
  }
951
954
 
952
955
  /**
@@ -961,7 +964,7 @@ declare class LocalSortTableComponent {
961
964
  type MasterDetailDisplayRatio = 'full' | 'wide' | 'medium' | 'narrow' | 'reverse';
962
965
  declare class MasterDetailsViewComponent {
963
966
  displayRatio: _angular_core.InputSignal<MasterDetailDisplayRatio>;
964
- width: _angular_core.Signal<"20%" | "25%" | "33.3333%" | "50%" | "75%">;
967
+ width: _angular_core.Signal<"50%" | "20%" | "25%" | "33.3333%" | "75%">;
965
968
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MasterDetailsViewComponent, never>;
966
969
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MasterDetailsViewComponent, "app-master-details-view", never, { "displayRatio": { "alias": "displayRatio"; "required": false; "isSignal": true; }; }, {}, never, ["[app-master]", "[app-details]"], true, never>;
967
970
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wolkabout/commons",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.2.11",
6
6
  "@angular/common": "^20.3.9",