@ngx-smz/core 19.3.7 → 19.3.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.
@@ -26,7 +26,7 @@ export declare class SmzDialogBuilder<TResponse> extends SmzBuilderUtilities<Smz
26
26
  hideRestoreButton(): SmzDialogBuilder<TResponse>;
27
27
  allowMinimize(label?: string): SmzDialogBuilder<TResponse>;
28
28
  setMinimizeDockImage(imagePath: string): SmzDialogBuilder<TResponse>;
29
- setMinHeight(percentageOfScreen: 50 | 60 | 70 | 80): SmzDialogBuilder<TResponse>;
29
+ setMinHeight(percentageOfScreen: 50 | 60 | 65 | 70 | 75 | 80 | 85 | 90): SmzDialogBuilder<TResponse>;
30
30
  overrideFeatureContainerStyles(styleClass: string): SmzDialogBuilder<TResponse>;
31
31
  setContainerStyles(styleClass: string): SmzDialogBuilder<TResponse>;
32
32
  hideHeader(): SmzDialogBuilder<TResponse>;
@@ -9,12 +9,14 @@ import { SmzTableExcelBuilder } from './excel-builder';
9
9
  import { SmzTableViewportBuilder } from './viewport';
10
10
  import { SmzCaptionButtonsBuilder } from './caption-buttons-builder';
11
11
  import { SmzBuilderUtilities } from '../common/smz-builder-utilities';
12
+ import { WritableSignal } from '@angular/core';
12
13
  export declare class SmzTableBuilder<TData> extends SmzBuilderUtilities<SmzTableBuilder<TData>> {
13
14
  protected that: this;
14
15
  _state: SmzTableState;
15
16
  constructor(uiDefinitionName?: string);
16
17
  setTitle(title: string): SmzTableBuilder<TData>;
17
18
  addSource(items$: Observable<any[]>): SmzTableBuilder<TData>;
19
+ addSignalSource(signalItems: WritableSignal<any[]>): SmzTableBuilder<TData>;
18
20
  enableGlobalFilter(): SmzTableBuilder<TData>;
19
21
  expandGlobalFilterInput(): SmzTableBuilder<TData>;
20
22
  enableColumnVisibility(showColumnHideButton?: boolean): SmzTableBuilder<TData>;
@@ -14,7 +14,7 @@ export declare class LoggingService {
14
14
  private levelRank;
15
15
  /** expose current settings */
16
16
  readonly isEnabled: import("@angular/core").Signal<boolean>;
17
- readonly currentLevel: import("@angular/core").Signal<"error" | "debug" | "info" | "warn">;
17
+ readonly currentLevel: import("@angular/core").Signal<"debug" | "info" | "warn" | "error">;
18
18
  readonly activeScopes: import("@angular/core").Signal<string[]>;
19
19
  /** toggle logging global */
20
20
  enable(): void;
@@ -67,6 +67,7 @@ export interface SmzDialog<T> {
67
67
  */
68
68
  domElementId?: string;
69
69
  contentClass?: string;
70
+ contentStyleClass?: string;
70
71
  containerStyleClass?: string;
71
72
  featureContainerClass?: string;
72
73
  }
@@ -3,9 +3,11 @@ import { Observable } from 'rxjs';
3
3
  import { SmzMenuItem } from '../../smz-menu/models/smz-menu-item';
4
4
  import { EditableChanges } from './editable-model';
5
5
  import { SmzTableCaptionButton, SmzTableColumn, SmzTableContextColumn } from "./table-column";
6
+ import { WritableSignal } from '@angular/core';
6
7
  export interface SmzTableState {
7
8
  source?: {
8
9
  items$?: Observable<any[]>;
10
+ signalItems: WritableSignal<any[]> | null;
9
11
  };
10
12
  /**
11
13
  * Custom actions
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@ngx-smz/core",
3
- "version": "19.3.7",
3
+ "version": "19.3.9",
4
4
  "peerDependencies": {
5
- "@angular/common": "^19.2.0",
6
- "@angular/core": "^19.2.0"
5
+ "@angular/common": "^19.2.0 || ^20.0.0",
6
+ "@angular/core": "^19.2.0 || ^20.0.0"
7
7
  },
8
8
  "dependencies": {
9
9
  "tslib": "^2.3.0"